123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289 |
- <!DOCTYPE>
- <html>
- <head>
- <meta charset="utf-8">
- <script src="lib/esl.js"></script>
- <script src="lib/config.js"></script>
- <script src="lib/testHelper.js"></script>
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <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: 350px;
- }
- </style>
- <h1>Shift</h1>
- <div class="chart" id="shift"></div>
- <h1>Range stick to value</h1>
- <div class="chart" id="value"></div>
- <script>
- var echarts;
- var chart;
- var myChart;
- require([
- 'echarts'
- // 'echarts/chart/line',
- // 'echarts/chart/bar',
- // 'echarts/component/legend',
- // 'echarts/component/grid',
- // 'echarts/component/tooltip',
- // 'echarts/component/toolbox',
- // 'echarts/component/dataZoom',
- // 'echarts/component/markLine'
- ], function (ec) {
- echarts = ec;
- var app = {};
- var option = {
- title : {
- text: '动态数据',
- subtext: '纯属虚构'
- },
- tooltip : {
- trigger: 'axis'
- },
- legend: {
- data:['最新成交价']
- },
- toolbox: {
- show : true,
- feature : {
- dataZoom : {
- yAxisIndex: false
- },
- }
- },
- dataZoom : [{
- type: 'inside',
- start : 0,
- end : 100
- },
- {
- type: 'slider',
- start : 0,
- end : 100
- }
- ],
- xAxis : [
- {
- type : 'value',
- scale: true
- }
- ],
- yAxis : [
- {
- type : 'value',
- scale: true,
- name : '预购量',
- max: 1200,
- min: 0,
- boundaryGap: [0.2, 0.2]
- }
- ],
- series : [
- {
- name:'最新成交价',
- type:'line',
- data:(function (){
- var res = [];
- var len = 0;
- while (len < 10) {
- var n = [
- len,
- (Math.random()*10 + 5).toFixed(1)
- ];
- res.push({name: n[0], value: n});
- len++;
- }
- return res;
- })(),
- animation: true,
- animationDurationUpdate: 500,
- animationEasing: 'linear',
- animationEasingUpdate: 'linear'
- }
- ]
- };
- var myChart = testHelper.createChart(echarts, 'shift', option);
- if (!myChart) {
- return;
- }
- clearInterval(app.timeTicket);
- app.count = 11;
- app.timeTicket = setInterval(function (){
- var data0 = option.series[0].data;
- data0.shift();
- var lastData = data0[data0.length - 1].value;
- var x = [lastData[0] + 1, Math.round(Math.random() * 1000)];
- data0.push({name: x[0], value: x});
- myChart.setOption({series: option.series});
- }, 2100);
- });
- </script>
- <script>
- var echarts;
- var chart;
- var myChart;
- require([
- 'echarts'
- // 'echarts/chart/line',
- // 'echarts/chart/bar',
- // 'echarts/component/legend',
- // 'echarts/component/grid',
- // 'echarts/component/tooltip',
- // 'echarts/component/dataZoom',
- // 'echarts/component/markLine'
- ], function (ec) {
- echarts = ec;
- var app = {};
- var option = {
- title : {
- text: '动态数据',
- subtext: '纯属虚构'
- },
- tooltip : {
- trigger: 'axis'
- },
- legend: {
- data:['最新成交价']
- },
- toolbox: {
- show : true,
- feature : {
- dataZoom : {
- yAxisIndex: false
- },
- }
- },
- dataZoom : [{
- type: 'inside',
- start : 0,
- endValue : 8,
- rangeMode: ['value', 'value']
- },
- {
- type: 'slider',
- start : 0,
- endValue : 8,
- rangeMode: ['value', 'value']
- }
- ],
- xAxis : [
- {
- type : 'value',
- scale: true
- }
- ],
- yAxis : [
- {
- type : 'value',
- scale: true,
- name : '预购量',
- max: 1200,
- min: 0,
- boundaryGap: [0.2, 0.2]
- }
- ],
- series : [
- {
- name:'最新成交价',
- type:'line',
- data:(function (){
- var res = [];
- var len = 0;
- while (len < 10) {
- var n = [
- len,
- (Math.random()*10 + 5).toFixed(1)
- ];
- res.push({name: n[0], value: n});
- len++;
- }
- return res;
- })(),
- animation: true,
- animationDurationUpdate: 500,
- animationEasing: 'linear',
- animationEasingUpdate: 'linear'
- }
- ]
- };
- var myChart = testHelper.createChart(echarts, 'value', option);
- if (!myChart) {
- return;
- }
- clearInterval(app.timeTicket);
- app.count = 11;
- app.timeTicket = setInterval(function (){
- var data0 = option.series[0].data;
- var lastData = data0[data0.length - 1].value;
- var x = [lastData[0] + 1, Math.round(Math.random() * 1000)];
- data0.push({name: x[0], value: x});
- myChart.setOption({series: option.series});
- app.count++;
- if (app.count > 300) {
- clearInterval(app.timeTicket);
- }
- }, 2100);
- });
- </script>
- </body>
- </html>
|