在highchart中在seconadry yaxis上创建MACD

时间:2014-03-04 12:38:23

标签: javascript highcharts

我正在使用

添加辅助y轴
chart.addAxis({ // Secondary yAxis
        title: {
         text: 'MACD'
        },
        top: 360,
        height: 87,
        offset: 0,
        lineWidth: 1,

    });

使用此

创建MACD
chart.addSeries(
    {
        color: '#F20',
        name: 'MACD',
        linkedTo: 'primary',
        showInLegend: true,
        type: 'trendline',
        algorithm: 'MACD',
        yAxis: 1,
        periods:15                                  
    });

MACD被绘制但不是在次要轴上......它是在基线中绘制的。

MACD

我为此创建了一个jsfiddle,请检查http://jsfiddle.net/das_palash89/EgYFV/

1 个答案:

答案 0 :(得分:1)

你应该使用yAxis yAxis:2的第二个索引,因为1,它是导航器yAxis。

http://jsfiddle.net/EgYFV/1/