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
x
49
49
1
var data = [[1,5], [2,4], [2.9, 3], [3.3,1], [4.5, 19], [4.7, 25], [4.9, 15],
2
[5.4, 10], [5.6, 11], [6.2, 2]];
3
4
Highcharts.chart('container', {
5
6
title: {
7
text: 'Bell curve'
8
},
9
10
xAxis: [{
11
title: {
12
text: 'Data'
13
},
14
alignTicks: false
15
}, {
16
title: {
17
text: 'Bell curve'
18
},
19
alignTicks: false,
20
opposite: true
21
}],
22
23
yAxis: [{
24
title: { text: 'Occurence' }
25
}, {
26
title: { text: 'Bell curve' },
27
opposite: true
28
}],
29
30
series: [{
31
name: 'Bell curve',
32
type: 'bellcurve',
33
xAxis: 1,
34
yAxis: 1,
35
baseSeries: 1,
36
zIndex: -1
37
}, {
38
name: 'Data',
39
type: 'scatter',
40
data: data,
41
accessibility: {
42
exposeAsGroupOnly: true
43
},
44
marker: {
45
radius: 3
46
}
47
}]
48
});
49
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
1
14
14
1
(function(H) {
2
H.wrap(H.seriesTypes.bellcurve.prototype, 'setMean', function(proceed) {
3
this.mean = H.correctFloat(
4
H.seriesTypes.bellcurve.mean(this.baseSeries.xData)
5
);
6
});
7
8
H.wrap(H.seriesTypes.bellcurve.prototype, 'setStandardDeviation', function(proceed) {
9
this.standardDeviation = H.correctFloat(
10
H.seriesTypes.bellcurve.standardDeviation(this.baseSeries.xData, this.mean)
11
);
12
});
13
}(Highcharts));
14
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