可以将第二个右轴添加到道场图表中吗?

时间:2014-01-23 16:19:39

标签: charts dojo axis

我需要三个轴:一个在左边,另一个在右边。

是否可以将第二个右轴添加到 dojo 图表?我做了以下,但右2轴重叠。

chart1.addAxis("py", {
    vertical : true,
    fixLower : "major",
    fixUpper : "major",
    includeZero : true,
    leftBottom : false,
    majorTickStep : Math.round(rateMax * 100) / 1000,
    max : rateMax + 5 * rateMax / 100,
    title : isTput?"Mins":"Rate(%)"
}).addPlot("RatePlot", {
    type : "Default",
    vAxis : "py",
    tension : "X",
    markers : true,
    stroke : {
        color : "yellow"
    },
    fill : "yellow",
    animate : true
});

chart1.addAxis("py2", {
    vertical : true,
    fixLower : "major",
    fixUpper : "major",
    includeZero : true,
    leftBottom : false,
    //majorTickStep : Math.round(rateMax * 100) / 1000,
    //max : rateMax + 5 * rateMax / 100,
    title : "Den"
}).addPlot("DenPlot", {
    type : "Default",
    vAxis : "py2",
    tension : "X",
    markers : true,
    stroke : {
        color : "yellow"
    },
    fill : "yellow",
    animate : true
});

1 个答案:

答案 0 :(得分:0)

添加新的html并使用样式设置图轴旁边的正确位置:

<div id="xlabel2" style="position: absolute; top: 460px; left: 70px;">Label 2</dev>

根据需要使用javascript:

开启或关闭
style: display:none;
       display:visible;