本文介绍了在Highcharts中绘制直方图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我们知道直方图和条形图是两个不同的东西。我有很多不同的方法来绘制高图中的条形图,但是我没有得到任何关于高层图中直方图的例子。是否有可能使用高图来绘制直方图,如果是,怎么样?解决方案
您可以使用highcharts列图减少所有填充,
groupPadding:0,
pointPadding:0,
borderWidth:0
或更复杂的例子:
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 ?
解决方案
You can use highcharts columns chart with reduced all paddings,
groupPadding: 0,
pointPadding: 0,
borderWidth: 0
or more complex example:
http://jsfiddle.net/9LGVA/370/
这篇关于在Highcharts中绘制直方图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!