我有一个Array。我想将其附加到Jqplot图表的Legend标签中。
var temps = [];
temps[0] = "Ax";
temps[1] = "Bx";
temps[2] = "Cx";
temps[3] = "Dx";
opts{
legend: {
renderer: $.jqplot.EnhancedLegendRenderer,
show: true,
showLabels: true,
//labels: ['Ax', 'Bx', 'Cx','Dx'] - this will exactly work
labels: [temps] //Append array .It Won't working.
},
};
最佳答案
您只需要简单地使用:labels: temps
。temps
已经是一个数组。