我正在使用这个非常简单的代码(实际上与条形图示例here相同,但是我注意到轴是倒置的。应该在Val轴上的数据显示在Cat上轴。
对于上面链接的示例也是如此,我似乎无法找到按正确顺序排列的方法。
下面是问题的图像。用于生成它的代码是:
sheet.add_chart(Axlsx::Bar3DChart,:title => "Chart", :show_legend => false, :start_at => "A1", :end_at => "P30", :bar_dir => :col) do |chart|
chart.add_series :data => sheet["B1:B25"], :labels => sheet["A1:A25"]
chart.valAxis.gridlines = false
chart.catAxis.gridlines = false
end
答案 0 :(得分:3)
我修好了。你可以在这里找到我的axlsx分支:https://github.com/HansCz/axlsx。
拉取请求将发送至https://github.com/randym/axlsx