如何在较旧的highcharts版本中设置工具提示

时间:2013-07-16 17:43:34

标签: highcharts

如何在旧版高图版本2.0.2中为饼图设置工具提示? api引用适用于新的3.0版本,而工具提示格式化程序似乎在旧版本中不起作用。

我试过了:

chart_spec.tooltip.Formatter = function(){
return this.point.name + ': <b>' + Highcharts.numberFormat(this.percentage, 1) + '%</b>';

};

和此:

chart_spec.tooltip.pointFormat = '<span style="color:{series.color}">{series.name}</span>: <b>{point.percentage}</b><br/>';

然后将chart_spec传递给构建图表:

this.current_chart = new Highcharts.Chart(chart_spec);

但不起作用..工具提示格式化程序适用于其他图表类型,如列等。

0 个答案:

没有答案