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?

enter image description here

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     }] } 

see this jsfiddle demonstration.


Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -