Search code examples
highchartshighcharts-ng

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


Is there any way to show the summation of area charts value in highcharts without using line chart? I would like to know any other alternatives.


Solution

  • You can use area series with stacking: 'normal' and set lineWidth and lineColor for the series at the top.

    series: [{
        lineWidth: 2,
        lineColor: 'red',
        ...
    }, ...]
    

    Live demo: https://jsfiddle.net/BlackLabel/sft7bu8r/

    API Reference: https://api.highcharts.com/highcharts/series.area.lineColor