为折线图添加特定的y轴

时间:2015-04-19 14:09:11

标签: javascript

通过挖掘和我之前的帖子或帖子,我已经能够弄清楚在构建一个组合时如何调整系列属性,即

      series: {1: {type: "line"},
                2: {type: "line"}}

请参阅fiddle

我的下一步是创建并链接单个Y轴与每个线相关系列。

如下面在combochart中所示,我想为线图添加一个特定的y轴。

enter image description here

任何想法??

1 个答案:

答案 0 :(得分:0)

以下是fork of your fiddle,第二个轴使用与您other question中显示的相同技术。

    series: {1: {type: "line", targetAxisIndex: 1},
             2: {type: "line"}},
    vAxes: {
            0: {
                title: 'axis1'
            },
            1: {
                title: 'axis2'
            }
        }