无法在Pie HighCharts上看到标签

时间:2013-06-04 02:33:03

标签: ruby-on-rails highcharts

我正在使用Ruby on Rails和HighCharts:

所以这是我在设置我的高级图时看到的打印屏幕:

enter image description here

以下是代码:

@chart = LazyHighCharts::HighChart.new('pie') do |f|
  f.chart({:defaultSeriesType=>"pie" , :margin=> [50, 200, 60, 170]} )
  series = {
           :type => 'pie',
           :name => 'Browser share',
           :data => [['say', 100],['may', 500]]
  }
  f.series(series)
  f.options[:title][:text] = "Total spend on services"
  f.legend(:layout=> 'vertical',:style=> {:left=> 'auto', :bottom=> 'auto',:right=> '50px',:top=> '100px'}) 
  f.plot_options(:pie=>{
    :allowPointSelect=>true, 
    :cursor=>"pointer" , 
    :dataLabels=>{
      :enabled=>true,
      :color=>"white",
      :style=>{
        :font=>"13px Trebuchet MS, Verdana, sans-serif"
      }
    }
  })
end

一切都很好,除了我没看到馅饼上的标签......似乎图表下面有一个小字符串,但标签没有初始化。

任何人都知道如何解决这个问题?

1 个答案:

答案 0 :(得分:2)

是因为你把它设置为白色吗?

:color=>"white",