我需要三个轴:一个在左边,另一个在右边。
是否可以将第二个右轴添加到 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
});
答案 0 :(得分:0)
添加新的html并使用样式设置图轴旁边的正确位置:
<div id="xlabel2" style="position: absolute; top: 460px; left: 70px;">Label 2</dev>
根据需要使用javascript:
开启或关闭style: display:none;
display:visible;