我正在使用Highcharts线图。 1,这是我的代码。
Highcharts.chart('container', {
title: {
text: 'title is Here',
color: 'Red'
},
xAxis: {
categories: ['3 month', '2 month', 'last month', 'this month']
},
plotOptions: {
series: {
lineWidth: 2,
lineColor: '#b6c4ce',
marker: {
fillColor: '#FFFFFF',
lineWidth: 2,
lineColor: '#83e3be' // inherit from series
}
}
},
series: [{
data: [29.9, 51.5, 36.4, 69.2]
}]
});
在此图中,我想在plotOptions.series中自定义一个特定的行 我想把线条颜色从“上个月”改为“本月”。 如何自定义如下图像?