基于xAxis的LazyHighcharts列颜色

时间:2018-08-13 23:56:42

标签: ruby-on-rails highcharts lazy-high-charts

我正在使用LazyHighcharts宝石生成动态图。我正在寻找基于类别名称的列的颜色,但似乎无法解决问题。

到目前为止,我有:

@graph = LazyHighCharts::HighChart.new('graph') do |f|
  f.yAxis [:title => {:text => "Sales ($)"]
  f.xAxis [categories: Category.order('type DESC'), data: [{x: 'Chips', color: 'red', x: 'Drinks', color: 'blue'}]]
  f.series(type: 'column', showInLegend: false, data: Sales.all)
  f.tooltip [enabled: false]
end

0 个答案:

没有答案