我需要使用"名称" X轴的属性,所以我可以把月份的名称。
因此,我不能在data
属性中使用值数组。所以我不能使用这种data:[12,13,45]
;
使用类似的东西:
// Create the chart
Highcharts.chart('container', {
chart: {
type: 'line'
},
series: [{
colorByPoint: true,
data: [{
name: 'Septiembre',
y: 1687
}, {
name: 'Octubre',
y: 2085
}]
}],
});