有什么方法可以在不使用折线图的情况下在 highcharts 中显示面积图值的总和?我想知道其他选择
Is there any way to show the summation of area charts value in highcharts without using a line chart? I would like to know other alternative
有没有什么方法可以在不使用折线图的情况下在highcharts中显示面积图值的总和?我想知道任何其他选择。
您可以将 area
系列与 stacking: 'normal'
一起使用,并为顶部的系列设置 lineWidth
和 lineColor
。
series: [{
lineWidth: 2,
lineColor: 'red',
...
}, ...]
现场演示: https://jsfiddle.net/BlackLabel/sft7bu8r/
API参考:https://api.highcharts.com/highcharts/series.area.lineColor
有没有什么方法可以在不使用折线图的情况下在highcharts中显示面积图值的总和?我想知道任何其他选择。
您可以将 area
系列与 stacking: 'normal'
一起使用,并为顶部的系列设置 lineWidth
和 lineColor
。
series: [{
lineWidth: 2,
lineColor: 'red',
...
}, ...]
现场演示: https://jsfiddle.net/BlackLabel/sft7bu8r/
API参考:https://api.highcharts.com/highcharts/series.area.lineColor