多y轴曲线
调试运行
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>图形展示</title>
</head>
<body>
<div class="detail-section">
<div id="canvas">
</div>
</div>
<script src="http://g.tbcdn.cn/bui/acharts/1.0.32/acharts-min.js"></script>
<!-- https://g.alicdn.com/bui/acharts/1.0.29/acharts-min.js -->
<script type="text/javascript">
var chart = new AChart({
theme : AChart.Theme.SmoothBase,
id : 'canvas',
width : 950,
height : 500,
plotCfg : {
margin : [50,50,80] //画板的边距
},
yAxis : [{
position : 'left',
ticks : [0,20,500,5000,5100]
},{
type : 'number',
position : 'right',
line : null,
tickLine : null,
labels : {
label : {
x : 12
}
},
title : {
text : '右边',
x : 40,
rotate : 90
},
ticks : [0,5,10,15,20]
}],
seriesOptions : { //设置多个序列共同的属性
lineCfg : { //不同类型的图对应不同的共用属性,lineCfg,areaCfg,columnCfg等,type + Cfg 标示
smooth : true
}
},
tooltip : {
valueSuffix : '¥'
},
series : [{
name: 'Tokyo',
pointStart : 20,
pointInterval : 100,
data: [10,412,5020,5034,5023,5078,5008,5025,4997,420,18,40]
}, {
name: 'London',
yAxis : 1, //使用第二个坐标轴,索引为1
data: [[100,3.9], [250,4.2], [300,5.7], [400,8.5], [520,11.9], [600,15.2], [900,17.0], [1050,16.6], [1100,14.2]]
}]
});
chart.render();
</script>
</body>
</html>