我有一个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已经是一个数组。

10-06 08:26