使用Chartkick / Highcharts on Rails的混合图表类型

问题描述 投票:0回答:1

我正在尝试使用Highcharts创建混合的柱形图/折线图。

我一直在尝试使用library功能将我的数据系列之一设置为“线”类型。我尝试了几种不同的方法,但似乎无法弄清楚如何使用Highcharts API传递给定系列的类型参数。

<%= column_chart( ChartData.new(@forecast).revenue_and_net_income, library: {
  title: {
    text: "Revenue and Net Income"
  },
  series: [{
    1 => {
      type: "line"
    }
  }],
} ) %> 

我的数据来自以下方法:

def revenue_and_net_income
data = [
  {
    name: "Revenue",
    data: revenue_by_year
  },
  {
    name: "Net Income",
    data: net_income_by_year,
  }
]

结束

不确定我在做什么错?我似乎只能访问“图表”下列出的Highcharts API方法,似乎所有系列选项均无效。谁能为我指出正确的方向,以使其成功工作?

ruby-on-rails highcharts chartkick
1个回答
0
投票

您可以尝试这种方式。

<%= line_chart [
        {
            name: "Amount", type: "column", data: @cause.donations.map {
                |t| [t.user.name, t.amount] 
            }
        },
        {
            name: "Test", type: "line", data: @cause.donations.map {
                |t| [t.user.name, t.amount]
            }
        }
    ],
    prefix: "$",
    adapter: "highcharts"
%>

只是不在乎line_chartcolumn_chart或其他任何东西...仅在数据中自定义type。 OK

© www.soinside.com 2019 - 2024. All rights reserved.