javascript - Can I add an "average" line to Highcharts Chart? -
i'm trying recreate chart (the 1 below) using highcharts. i'm using basic bar chart, , i'm wondering if there way vertical line showing average of bars? have value calculated, need display picture shows. can using highcharts?
yes. can add plotline, this:
yaxis: { // ...options plotlines: [{ color: 'red', value: '15', // insert average here width: '1', zindex: 2 // not stuck below regular plot lines }] }
Comments
Post a Comment