如何从Highcharts-Box Plot的工具提示中的一个点获得下四分位数和上四分位数值

时间:2013-05-23 19:27:03

标签: highcharts highstock

如何从Highcharts Box Plot中的某个点获得较低的四分位数和一个较高的四分位数值?

我可以使用

获取最小值和最大值

point.lowpoint.high

1 个答案:

答案 0 :(得分:1)

从阅读docs并查看DOM for Highcharts boxplot,你可以这样做:

plotOptions: {
    series: {
        cursor: 'pointer',
        events: {
            click: function (event) {
                console.log('low:' + event.point.low);
                console.log('q1:' + event.point.q1);
                console.log('median:' + event.point.median);
                console.log('q3:' + event.point.q3);
                console.log('high:' + event.point.high);
            }
        }
    }
},

在我看来,point.q1,point.median,point.q3都可以访问。