我正在使用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