3

以下代码:

f.series(:data => @values, :dataLabels => { :formatter => "function() { return this.x; }".js_code, :enabled => true, :rotation => 90, :x=>-3, :y=>15, :color=>"#FFFFFF" } )

...与格式化程序功能除外。当我添加它时,图表无法呈现。否则标签存在、旋转等。

不太清楚为什么下一行包含一个类似的工具提示格式化程序,它确实有效:

f.options[:tooltip][:formatter] = "function() { return ''+ this.x +': '+ this.y.toFixed(1) +' %'; }".js_code

参考:http ://www.highcharts.com/demo/column-rotated-labels

更新:TypeError: f.formatter.call is not a function是我在萤火虫中看到的错误。知道这里有什么吗?

4

1 回答 1

2

我有同样的问题,我通过添加解决了

    <%= raw "options.tooltip.formatter = function() {
        return '<b>' + this.point.name +'</b>: '+ this.y +' %';
      }" %>

在查看文件中。

访问这里以获取更多建议。

于 2013-06-11T04:10:53.460 回答