Highcharts - 显示工具提示onClick而不是悬停

时间:2016-05-07 15:15:34

标签: javascript jquery highcharts

我在https://stackoverflow.com/a/24206104/5653279尝试了解决方案,但无效,因为我的Highcharts包含2个系列的数据。

按照上述解决方案返回错误

  

未捕获的TypeError:无法读取属性'类别'未定义的

$(function () {
$('#container').highcharts({
    chart: {
        type: 'spline',
        zoomType: 'xy',
        events: {
                load: function(){
                    this.myTooltip = new Highcharts.Tooltip(this, this.options.tooltip);                    
                }
            }
    },
    tooltip: {
            enabled: false,
        headerFormat: '<b>{point.x: %A, %b %e at %I:%M %p}</b><br>',
            shared: true,
        borderRadius: 10,
        crosshairs: [true, false] //x,y
    },
    plotOptions: {
            series: {
                stickyTracking: false,
                events: {
                    click: function(evt) {
                        this.chart.myTooltip.refresh(evt.point, evt);
                    },
                    mouseOut: function() {
                        this.chart.myTooltip.hide();
                    }                       
                }
             }
        },
    title: {
        text: 'Glucose/Carbohydrate'
    },
    subtitle: {
        text: 'Ratio between Glucose and Glucose'
    },
    xAxis: {
        type: 'datetime',
        dateTimeLabelFormats: {
            month: '%e/%b',
        },
        title: {
            text: 'Date'
        }
    },
     yAxis: [{ // Glucose yAxis
        labels: {
            format: '{value}mmol/L',
            style: {
                color: Highcharts.getOptions().colors[0]
            }
        },
        title: {
            text: 'Glucose',
            style: {
                color: Highcharts.getOptions().colors[0]
            }
        }
    }, { // Carbohydrate yAxis
        title: {
            text: 'Carbohydrate',
            style: {
                color: Highcharts.getOptions().colors[1]
            }
        },
        labels: {
            style: {
                color: Highcharts.getOptions().colors[1]
            }
        },
        opposite: true
    }],
    series: [{
        name: 'Glucose',
        data: glucose,
        marker: {
            enabled: true
        },
        tooltip: {
            valueSuffix: ' mmol/L'
        }
    },{
        name: 'Carbohydrate',
        data: carbohydrate,
        dashStyle: 'shortdot',
        yAxis: 1,
        marker: {
            enabled: true
        }
    }
    ]}
    ); 
});

然而,错误将被解决&#34;如果我编辑plotOptions就可以了。

plotOptions: {
            series: [{
                stickyTracking: false,
                events: {
                    click: function(evt) {
                        this.chart.myTooltip.refresh(evt.point, evt);
                    },
                    mouseOut: function() {
                        this.chart.myTooltip.hide();
                    }                       
                }
             },
             {
                stickyTracking: false,
                events: {
                    click: function(evt) {
                        this.chart.myTooltip.refresh(evt.point, evt);
                    },
                    mouseOut: function() {
                        this.chart.myTooltip.hide();
                    }                       
                }
             }]
        },

但是,当我点击任何一点时,工具提示都没有显示。

1 个答案:

答案 0 :(得分:1)

解决了这个问题!

刚刚改变

  

this.chart.myTooltip.refresh(evt.point,evt);

  

this.chart.myTooltip.refresh([evt.point],evt);

但是这个修复的唯一限制是,如果有多个系列(例如A行和B行)并且两个系列的数据都落在同一个X轴上(例如在同一个日期),点击它只会显示特定系列数据的工具提示(如果我点击系列A的数据,工具提示只会显示没有B的A数据,即使他们共享相同的X轴)。