答案 0 :(得分:4)
在ZingChart中很容易实现。这是我根据您的图片放在一起的演示。向下滚动并运行代码段以查看实时演示。
免责声明*我是ZingChart团队的成员。如果您有疑问,请评论!
var myConfig = {
theme:"none",
type: "bar",
scaleY:{
values: "0:120:20"
},
plot:{
shadow:false,
barsOverlap:"100%"
},
scaleY2:{
values:"0:700:100",
guide:{
visible:false
}
},
scaleX:{
guide:{
visible:false
}
},
series : [
{
values : [89,108,46,31,8,8,5,1],
barWidth:"80%",
backgroundColor:"#C0504D",
valueBox:{
color:"black"
},
hoverState:{
visible:false
}
},
{
values: [410,115,108,115,615,105,250,90],
barWidth:"20%",
scales:"scale-x,scale-y-2",
backgroundColor:"#9BBB59",
hoverState:{
visible:false
}
},
]
};
zingchart.render({
id : 'myChart',
data : myConfig,
height: 400,
width: 600
});

<script src="http://cdn.zingchart.com/zingchart.min.js"></script>
<div id="myChart"></div>
&#13;