根据文档,要获得折线图系列的名称,您必须设置'标签'这是'系列'。类似的东西:
var plot1 = $.jqplot('chart1', [line1,line2], {
title: 'XYZVV, Inc.',
series: [
{ label: 'Toronto' },
{ label: 'Lima' }
],
然而,我无法做到。请检查这个小提琴:
http://jsfiddle.net/jbeteta/R92tG/96/
没有显示任何系列的标签。
答案 0 :(得分:0)
您需要将图例设置为可见:
title: 'XYZVV, Inc.',
series: [
{ label: 'Toronto' },
{ label: 'Lima' }
],
legend: {
show: true
}