简体   繁体   中英

HighCharts - pass mean value from bell curve to a function

I am using Highcharts and I have a histogram with bull curve behind. Everything works well, bell curve generates mean and standard deviation numbers . I would like to know if there is a way of passing the mean and standard deviation numbers that are on top of the curve to an outside function so that I can conduct another statistical operation with them.

Thanks,

You can get the required values from created chart. For example:

const chart = Highcharts.chart('container', {
    ...
});

const bellCurveSeries = chart.series[0];
const mean = bellCurveSeries.mean;
const xData = bellCurveSeries.xData;
const yData = bellCurveSeries.yData;

console.log(mean, xData, yData);

Live demo: https://jsfiddle.net/BlackLabel/v7prbxmo/

API Reference: https://api.highcharts.com/class-reference/Highcharts.Chart#series

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM