3

我正在唱 Highcharts 来显示年份与贷款保费金额的对比。当用户将鼠标悬停在图表区域时,我会显示十字准线和工具提示。但是,我想在图表最初加载时显示这一点(没有/在移动鼠标之前)。有没有办法做到这一点?为了使工具提示具有粘性,我使用了下面的代码并且它可以工作(IE8 除外)。同样,寻找在加载时显示它。

chart.tooltip.hide = function () { };
4

1 回答 1

23

使用您希望在加载时显示工具提示的点刷新工具提示

chart.tooltip.refresh(chart.series[1].points[2]);

// If the tooltip.shared=true, the parameter is array of points
chart.tooltip.refresh([chart.series[1].points[2]]); 

在加载时显示工具提示@jsFiddle

阅读更多 @自定义 Highcharts - 工具提示可见性

于 2012-09-10T10:44:43.033 回答