123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372 |
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <script src="./lib/esl.js"></script>
- <script src="./lib/config.js"></script>
- <script src="./lib/facePrint.js"></script>
- <script src="lib/testHelper.js"></script>
- <link rel="stylesheet" href="lib/reset.css" />
- </head>
- <body>
- <style>
- h1 {
- line-height: 60px;
- height: 60px;
- background: #ddd;
- text-align: center;
- font-weight: bold;
- font-size: 14px;
- }
- .chart {
- height: 500px;
- }
- </style>
- <h1>rainfall</h1>
- <div class="chart" id="rainfall"></div>
- <h1>zoom lock | Should not prevent default when mouse wheel.</h1>
- <div class="chart" id="zoom-lock"></div>
- <h1>zoomOnMouseWheel: 'shift', moveOnMouseMove: 'alt' | Should not prevent default when mouse wheel.</h1>
- <div class="chart" id="zoom-shift"></div>
- <script>
- require([
- 'data/rainfall.json',
- 'echarts'
- // 'zrender/vml/vml',
- // 'echarts/chart/bar',
- // 'echarts/chart/line',
- // 'echarts/component/legend',
- // 'echarts/component/tooltip',
- // 'echarts/component/grid',
- // 'echarts/component/axis',
- // 'echarts/component/dataZoomInside'
- ], function (data, echarts) {
- var chart = echarts.init(document.getElementById('rainfall'));
- var option = {
- tooltip: {
- trigger: 'axis',
- },
- legend: {
- data: ['降水量', '流量']
- },
- grid: [
- {
- show: true,
- borderWidth: 0,
- right: '15%',
- bottom: '53%'
- },
- {
- show: true,
- borderWidth: 0,
- right: '15%',
- top: '53%'
- }
- ],
- xAxis: [
- {
- // data: ['类目1', '类目2', '类目3', '类目4', '类目5',]
- // data: xAxisData,
- type: 'category',
- boundaryGap: true,
- // splitLine: {show: false},
- axisLabel: {show: true},
- splitLine: {show: false},
- axisLine: {
- show: true,
- // onZero: false
- },
- data: data.category,
- gridIndex: 0
- },
- {
- // data: ['类目1', '类目2', '类目3', '类目4', '类目5',]
- // data: xAxisData,
- type: 'category',
- boundaryGap: true,
- axisLabel: {show: true},
- splitLine: {show: false},
- axisLine: {
- show: true,
- },
- data: data.category,
- gridIndex: 1
- }
- ],
- yAxis: [
- {
- boundaryGap: false,
- axisLabel: {
- },
- axisLine: {
- lineStyle: {
- color: '#666'
- }
- },
- gridIndex: 0
- },
- {
- boundaryGap: false,
- position: 'right',
- inverse: true,
- axisLabel: {
- textStyle: {
- color: '#666'
- }
- },
- axisLine: {
- lineStyle: {
- color: '#666'
- }
- },
- gridIndex: 1
- }
- ],
- series: [
- {
- name: '降水量',
- type: 'line',
- data: data.rainfall,
- itemStyle: {
- normal: {
- areaStyle: {}
- }
- },
- xAxisIndex: 0,
- yAxisIndex: 0,
- },
- {
- name: '流量',
- type: 'line',
- data: data.flow,
- itemStyle: {
- normal: {
- areaStyle: {}
- }
- },
- xAxisIndex: 1,
- yAxisIndex: 1
- }
- ],
- dataZoom: [
- {
- type: 'inside',
- xAxisIndex: [0, 1],
- start: 30,
- end: 40
- }
- ]
- };
- testHelper.createChart(echarts, 'rainfall', option);
- })
- </script>
- <script>
- require([
- 'data/rainfall.json',
- 'echarts'
- // 'zrender/vml/vml',
- // 'echarts/chart/bar',
- // 'echarts/chart/line',
- // 'echarts/component/legend',
- // 'echarts/component/tooltip',
- // 'echarts/component/grid',
- // 'echarts/component/axis',
- // 'echarts/component/dataZoom'
- ], function (data, echarts) {
- var chart = echarts.init(document.getElementById('zoom-lock'));
- var option = {
- tooltip: {
- trigger: 'axis',
- },
- grid: [
- {
- show: true,
- borderWidth: 0
- }
- ],
- xAxis: [
- {
- type: 'category',
- boundaryGap: true,
- axisLabel: {show: true},
- splitLine: {show: false},
- data: data.category,
- gridIndex: 0
- }
- ],
- yAxis: [
- {
- boundaryGap: false,
- axisLabel: {
- },
- axisLine: {
- lineStyle: {
- color: '#666'
- }
- },
- gridIndex: 0
- }
- ],
- series: [
- {
- name: '降水量',
- type: 'line',
- data: data.rainfall,
- itemStyle: {
- normal: {
- areaStyle: {}
- }
- },
- xAxisIndex: 0,
- yAxisIndex: 0,
- }
- ],
- dataZoom: [
- {
- type: 'inside',
- zoomLock: true,
- start: 30,
- end: 40
- },
- {
- type: 'slider',
- start: 30,
- end: 40
- },
- {
- type: 'slider',
- yAxisIndex: 0
- }
- ]
- };
- testHelper.createChart(echarts, 'zoom-lock', option);
- })
- </script>
- <script>
- require([
- 'data/rainfall.json',
- 'echarts'
- // 'zrender/vml/vml',
- // 'echarts/chart/bar',
- // 'echarts/chart/line',
- // 'echarts/component/legend',
- // 'echarts/component/tooltip',
- // 'echarts/component/grid',
- // 'echarts/component/axis',
- // 'echarts/component/dataZoom'
- ], function (data, echarts) {
- var option = {
- tooltip: {
- trigger: 'axis'
- },
- grid: [
- {
- show: true,
- borderWidth: 0
- }
- ],
- xAxis: [
- {
- type: 'category',
- boundaryGap: true,
- axisLabel: {show: true},
- splitLine: {show: false},
- data: data.category,
- gridIndex: 0
- }
- ],
- yAxis: [
- {
- boundaryGap: false,
- axisLabel: {
- },
- axisLine: {
- lineStyle: {
- color: '#666'
- }
- },
- gridIndex: 0
- }
- ],
- series: [
- {
- name: '降水量',
- type: 'line',
- data: data.rainfall,
- itemStyle: {
- normal: {
- areaStyle: {}
- }
- },
- xAxisIndex: 0,
- yAxisIndex: 0,
- }
- ],
- dataZoom: [
- {
- type: 'inside',
- zoomOnMouseWheel: 'shift',
- moveOnMouseMove: 'alt',
- start: 30,
- end: 40
- },
- {
- type: 'slider',
- start: 30,
- end: 40
- },
- {
- type: 'slider',
- yAxisIndex: 0
- }
- ]
- };
- testHelper.createChart(echarts, 'zoom-shift', option);
- })
- </script>
- </body>
- </html>
|