以下代码:
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
是我在萤火虫中看到的错误。知道这里有什么吗?