最大的挫败感。我已经尝试了很多不同的实现 :title 和 setTitle 的方法,但我似乎无法更改图表上方的主标题。这是gem页面上给出的示例
@h = LazyHighCharts::HighChart.new('graph') do |f|
f.options[:chart][:defaultSeriesType] = "area"
f.series(:name=>'John', :data=>[3, 20, 3, 5, 4, 10, 12 ,3, 5,6,7,7,80,9,9])
f.series(:name=>'Jane', :data=> [1, 3, 4, 3, 3, 5, 4,-46,7,8,8,9,9,0,0,9] )
end
我最接近的是使用删除标题f.options[:title] = "Test Title"
谢谢