| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 | <!DOCTYPE html><html lang="en"><head>    <meta charset="utf-8">    <meta http-equiv="X-UA-Compatible" content="IE=edge">    <meta name="viewport" content="width=device-width, initial-scale=1.0">    <meta name="description" content="ECharts">    <meta name="author" content="kener.linfeng@gmail.com">    <title>ECharts · Example</title>    <link rel="shortcut icon" href="../asset/ico/favicon.png">    <link href="../asset/css/font-awesome.min.css" rel="stylesheet">    <link href="../asset/css/bootstrap.css" rel="stylesheet">    <link href="../asset/css/echartsHome.css" rel="stylesheet">    <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->    <!--[if lt IE 9]>      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>    <![endif]-->    <script src="../asset/js/esl/esl.js"></script></head><body>    <!-- Fixed navbar -->    <div class="navbar navbar-default navbar-fixed-top" role="navigation" id="head"></div>    <div class="container featurette">        <div class="row">            <div id="graphic" class="col-md-12">                <div id="main" style="height:400px;width:100%"></div>            </div><!--/span-->        </div><!--/row-->    </div><!--/.fluid-container-->    <footer id="footer"></footer>    <!-- Le javascript    ================================================== -->    <!-- Placed at the end of the document so the pages load faster -->    <script src="../asset/js/jquery.min.js"></script>    <script type="text/javascript" src="../asset/js/echartsHome.js"></script>    <script src="../asset/js/bootstrap.min.js"></script>    <script type="text/javascript">        require.config({            packages: [                {                    name: 'echarts',                    location: '../../src',                    main: 'echarts'                },                {                    name: 'zrender',                    location: 'http://ecomfe.github.io/zrender/src',                    //location: '../../../zrender/src',                    main: 'zrender'                }            ]        });                var option = {            tooltip : {                trigger: 'axis'            },            legend: {                data:['蒸发量','降水量']            },            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,            xAxis : [                {                    type : 'category',                    data : ['1月','2月','3月','4月','5月','6月','7月','8月','9月','10月','11月','12月']                }            ],            yAxis : [                {                    type : 'value',                    splitArea : {show : true}                }            ],            series : [                {                    name:'蒸发量',                    type:'bar',                    data:[2.0, 4.9, 7.0, 23.2, 25.6, 76.7, 135.6, 162.2, 32.6, 20.0, 6.4, 3.3]                },                {                    name:'降水量',                    type:'bar',                    data:[2.6, 5.9, 9.0, 26.4, 28.7, 70.7, 175.6, 182.2, 48.7, 18.8, 6.0, 2.3]                }            ]        };                require(            [                'echarts',                'echarts/chart/line',                'echarts/chart/bar'            ],            function (ec) {                var myChart = ec.init(document.getElementById('main'));                myChart.setOption(option);            }        )    </script></body></html>
 |