|
发表于 2019-1-24 11:04
来自手机
|
显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件 ★ 免费下载 ★ ★ 使用帮助★
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>柱状折线图</title>
</head>
<body>
<!-- 为ECharts准备一个具备大小(宽高)的Dom -->
<div id="main" style="height:400px"></div>
网页来源:http://5809c7f4.nat123.cc:8080/bsbm/pdo/eh2/a18/echarts/index_bar_line2.php <!-- ECharts单文件引入 -->
<script src="http://echarts.baidu.com/build/dist/echarts-all.js"></script>
<br>
<script type="text/javascript">
// 基于准备好的dom,初始化echarts图表
var myChart = echarts.init(document.getElementById('main'));
option = {
tooltip : {
trigger: 'axis'
},
toolbox: {
show : true,
feature : {
mark : {show: true},
dataView : {show: true, readOnly: false},
// magicType: {show: true, type: ['line', 'bar']},
restore : {show: true},
saveAsImage : {show: true}
}
},
calculable : true,
legend: {
data:["2011\u5e74C\u4ea7\u54c1\u9500\u552e\u91d1\u989d","2012\u5e74C\u4ea7\u54c1\u9500\u552e\u91d1\u989d","2012\u5e74C\u4ea7\u54c1\u589e\u957f\u7387"] },
xAxis : [
{
type : 'category',
data : ["1\u6708","2\u6708","3\u6708","4\u6708","5\u6708","6\u6708","7\u6708","8\u6708","9\u6708","10\u6708","11\u6708","12\u6708"] }
],
yAxis : [
{
type : 'value',
name : '销售',
axisLabel : {
formatter: '{value} 公斤'
}
},
{
type : 'value',
name : '增长率',
axisLabel : {
formatter: '{value} %'
}
}
],
series :[{"name":"2011\u5e74C\u4ea7\u54c1\u9500\u552e\u91d1\u989d","type":"bar","data":["1905705","642511","1074746","825353","1643519","1545250","978434","1124552","699224","1162758","1509369","957214"]},{"name":"2012\u5e74C\u4ea7\u54c1\u9500\u552e\u91d1\u989d","type":"bar","data":["985597","706756","1838553","1082255","1068017","1780733","1664768","744761","866656","1846286","730211","1835962"]},{"name":"2012\u5e74C\u4ea7\u54c1\u589e\u957f\u7387","type":"line","data":[-48.281764491356,9.9990505999119,71.068605977598,31.126318072388,-35.01644945997,15.239152240738,70.146172352964,-33.772649019343,23.945402331728,58.785061035916,-51.621439157688,91.802668995648],"yAxisIndex":1}]
};
// 为echarts对象加载数据
myChart.setOption(option);
</script>
</body>
</html>
|
评分
-
1
查看全部评分
-
|