Skip to content
Advertisement

Creating bell curve chart with xData in Highchart

I’m creating a chart with Highchart library and I have a set of data like this: [x,y], with x: value and y: occurrence. I tried to use this to present normal distribution line but it uses yData to calculate instead of xData. Does anyone have any ideas to solve this?

JavaScript

jsfiddle link: https://jsfiddle.net/Lvehqmaz/1/

Advertisement

Answer

You can add a mocked series and hide it, as you suggested. Example: https://jsfiddle.net/BlackLabel/1ykt65av/

Or modify the way of calculating data. Source code: https://code.highcharts.com/modules/histogram-bellcurve.src.js

JavaScript

Live demo: https://jsfiddle.net/BlackLabel/7cryn8vd/

API Reference: https://api.highcharts.com/highcharts/series.bellcurve.showInLegend

Docs: https://www.highcharts.com/docs/extending-highcharts/extending-highcharts

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement