Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Plot Histograms in Highcharts

Tags:

highcharts

As we know that histogram and bar charts are two different things. I have got many different ways to plot bar charts in highcharts but I didn't get any examples for histogram plot in highcharts. Is it possible to plot histogram using highcharts, if yes, How ?

like image 695
Bishnu Bhattarai Avatar asked Aug 04 '13 10:08

Bishnu Bhattarai


1 Answers

You can use highcharts columns chart with reduced all paddings,

groupPadding: 0,
pointPadding: 0,
borderWidth: 0

http://jsfiddle.net/WbHsX/8/

or more complex example:

http://jsfiddle.net/9LGVA/370/

like image 51
Sebastian Bochan Avatar answered Nov 01 '22 15:11

Sebastian Bochan