| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531 |
- $(window).load(function () {
- $(".loading").fadeOut()
- })
- /* */
- $(function () {
- echarts_1();
- echarts_2();
- echarts_3();
- echarts_4();
- function echarts_1() {
- // 基于准备好的dom,初始化echarts实例
- var myChart = echarts.init(document.getElementById('echart1'));
- option = {
- tooltip: {
- trigger: 'item',
- formatter: "{a} <br/>{b} : {c} ({d}%)"
- },
- series: [{
- name: '占比情况',
- type: 'pie',
- radius: '50%',
- center: ['50%', '50%'],
- clockwise: false,
- data: [ {
- value: 25,
- name: '公司1'
- }, {
- value: 15,
- name: '公司2'
- }, {
- value: 8,
- name: '公司3'
- }],
- label: {
- normal: {
- textStyle: {
- color: 'rgba(255,255,255,.6)',
- fontSize: 14,
- }
- }
- },
- labelLine: {
- normal: {
- show: false
- }
- },
- itemStyle: {
- normal: {
- //borderWidth: 1,
- //borderColor: '#ffffff',
- },
- emphasis: {
- borderWidth: 0,
- shadowBlur: 10,
- shadowOffsetX: 0,
- shadowColor: 'rgba(0, 0, 0, 0.5)'
- }
- }
- }],
- color: ['#62c98d','#2f89cf','#4cb9cf'],
- //backgroundColor: '#fff'
- };
- // 使用刚指定的配置项和数据显示图表。
- myChart.setOption(option);
- window.addEventListener("resize", function () {
- myChart.resize();
- });
- }
- function echarts_2() {
- // 基于准备好的dom,初始化echarts实例
- var myChart = echarts.init(document.getElementById('echart2'));
- var vdata = [
- [4, 3, 5, 9, 1, 8, 3, 7, 2, 4, 6, 4],
- [5, 5, 7, 3, 6, 8, 9, 4, 3, 7, 2, 2],
- ];
- var xdata = ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'];
- var ydata = ['计划数量', '销售金额'];
- var series = [];
- $.each(vdata, function (index, val) {
- var series_option = {
- name: ydata[index],
- type: 'bar',
- itemStyle: {
- normal: {color: ''}
- },
- barWidth: '30',
- data: val
- };
- series.push(series_option);
- })
- option = {
- legend: {
- data: ydata,
- type: 'scroll',
- textStyle: {color: "#fff"},
- top: '0'
- },
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'shadow'
- }
- },
- "color": ["#62c98d", "#2f89cf"],
- grid: {
- top: '14%',
- left: '15',
- right: '35',
- bottom: '12%',
- containLabel: true
- },
-
- xAxis: [{
- type: 'category',
- axisLabel: {textStyle: {color: "rgba(255,255,255,.6)",}},
- axisLine: {lineStyle: { color: 'rgba(255,255,255,.1)'}},
- data: xdata,
- }],
- yAxis: [{
- name: '',
- type: 'value',
- axisTick: {show: false},
- splitLine: {
- show: true,
- lineStyle: {
- color: "#2f2a7a"
- }
- }, //x轴线
- axisLabel: {textStyle: {color: 'rgba(255,255,255,.6)'}},
- axisLine: {lineStyle: {color: 'rgba(255,255,255,.1)'}},
- }],
- "dataZoom": [{
- "show": true,
- "height": 12,
- "xAxisIndex": [
- 0
- ],
- bottom: 5,
- "start": 10,
- "end": 80,
- handleIcon: 'path://M306.1,413c0,2.2-1.8,4-4,4h-59.8c-2.2,0-4-1.8-4-4V200.8c0-2.2,1.8-4,4-4h59.8c2.2,0,4,1.8,4,4V413z',
- handleSize: '110%',
- handleStyle: {
- color: "#d3dee5",
- },
- textStyle: {
- color: "#fff"
- },
- borderColor: "rgba(255,255,255,.3)"
- }],
- series: series
- };
- // 使用刚指定的配置项和数据显示图表。
- myChart.setOption(option);
- window.addEventListener("resize", function () {
- myChart.resize();
- });
- }
- /* */
- function echarts_3() {
- var myChart = echarts.init(document.getElementById('echart3'));
- var geoCoordMap = {
- '上海': [121.4648,31.2891],
- '东莞': [113.8953,22.901],
- '东营': [118.7073,37.5513],
- '中山': [113.4229,22.478],
- '临汾': [111.4783,36.1615],
- '临沂': [118.3118,35.2936],
- '丹东': [124.541,40.4242],
- '丽水': [119.5642,28.1854],
- '乌鲁木齐': [87.9236,43.5883],
- '佛山': [112.8955,23.1097],
- '保定': [115.0488,39.0948],
- '兰州': [103.5901,36.3043],
- '包头': [110.3467,41.4899],
- '北京': [116.4551,40.2539],
- '北海': [109.314,21.6211],
- '南京': [118.8062,31.9208],
- '南宁': [108.479,23.1152],
- '南昌': [116.0046,28.6633],
- '南通': [121.1023,32.1625],
- '厦门': [118.1689,24.6478],
- '台州': [121.1353,28.6688],
- '合肥': [117.29,32.0581],
- '呼和浩特': [111.4124,40.4901],
- '咸阳': [108.4131,34.8706],
- '哈尔滨': [127.9688,45.368],
- '唐山': [118.4766,39.6826],
- '嘉兴': [120.9155,30.6354],
- '大同': [113.7854,39.8035],
- '大连': [122.2229,39.4409],
- '天津': [117.4219,39.4189],
- '太原': [112.3352,37.9413],
- '威海': [121.9482,37.1393],
- '宁波': [121.5967,29.6466],
- '宝鸡': [107.1826,34.3433],
- '宿迁': [118.5535,33.7775],
- '常州': [119.4543,31.5582],
- '广州': [113.5107,23.2196],
- '廊坊': [116.521,39.0509],
- '延安': [109.1052,36.4252],
- '张家口': [115.1477,40.8527],
- '徐州': [117.5208,34.3268],
- '德州': [116.6858,37.2107],
- '惠州': [114.6204,23.1647],
- '成都': [103.9526,30.7617],
- '扬州': [119.4653,32.8162],
- '承德': [117.5757,41.4075],
- '拉萨': [91.1865,30.1465],
- '无锡': [120.3442,31.5527],
- '日照': [119.2786,35.5023],
- '昆明': [102.9199,25.4663],
- '杭州': [119.5313,29.8773],
- '枣庄': [117.323,34.8926],
- '柳州': [109.3799,24.9774],
- '株洲': [113.5327,27.0319],
- '武汉': [114.3896,30.6628],
- '汕头': [117.1692,23.3405],
- '江门': [112.6318,22.1484],
- '沈阳': [123.1238,42.1216],
- '沧州': [116.8286,38.2104],
- '河源': [114.917,23.9722],
- '泉州': [118.3228,25.1147],
- '泰安': [117.0264,36.0516],
- '泰州': [120.0586,32.5525],
- '济南': [117.1582,36.8701],
- '济宁': [116.8286,35.3375],
- '海口': [110.3893,19.8516],
- '淄博': [118.0371,36.6064],
- '淮安': [118.927,33.4039],
- '深圳': [114.5435,22.5439],
- '清远': [112.9175,24.3292],
- '温州': [120.498,27.8119],
- '渭南': [109.7864,35.0299],
- '湖州': [119.8608,30.7782],
- '湘潭': [112.5439,27.7075],
- '滨州': [117.8174,37.4963],
- '潍坊': [119.0918,36.524],
- '烟台': [120.7397,37.5128],
- '玉溪': [101.9312,23.8898],
- '珠海': [113.7305,22.1155],
- '盐城': [120.2234,33.5577],
- '盘锦': [121.9482,41.0449],
- '石家庄': [114.4995,38.1006],
- '福州': [119.4543,25.9222],
- '秦皇岛': [119.2126,40.0232],
- '绍兴': [120.564,29.7565],
- '聊城': [115.9167,36.4032],
- '肇庆': [112.1265,23.5822],
- '舟山': [122.2559,30.2234],
- '苏州': [120.6519,31.3989],
- '莱芜': [117.6526,36.2714],
- '菏泽': [115.6201,35.2057],
- '营口': [122.4316,40.4297],
- '葫芦岛': [120.1575,40.578],
- '衡水': [115.8838,37.7161],
- '衢州': [118.6853,28.8666],
- '西宁': [101.4038,36.8207],
- '西安': [109.1162,34.2004],
- '贵阳': [106.6992,26.7682],
- '连云港': [119.1248,34.552],
- '邢台': [114.8071,37.2821],
- '邯郸': [114.4775,36.535],
- '郑州': [113.4668,34.6234],
- '鄂尔多斯': [108.9734,39.2487],
- '重庆': [107.7539,30.1904],
- '金华': [120.0037,29.1028],
- '铜川': [109.0393,35.1947],
- '银川': [106.3586,38.1775],
- '镇江': [119.4763,31.9702],
- '长春': [125.8154,44.2584],
- '长沙': [113.0823,28.2568],
- '长治': [112.8625,36.4746],
- '阳泉': [113.4778,38.0951],
- '青岛': [120.4651,36.3373],
- '韶关': [113.7964,24.7028]
- };
- var BJData = [
- [{name:'北京'}, {name:'上海',value:95}],
- [{name:'北京'}, {name:'广州',value:90}],
- [{name:'北京'}, {name:'大连',value:80}],
- [{name:'北京'}, {name:'南宁',value:70}],
- [{name:'北京'}, {name:'南昌',value:60}],
- [{name:'北京'}, {name:'拉萨',value:50}],
- [{name:'北京'}, {name:'长春',value:40}],
- [{name:'北京'}, {name:'包头',value:30}],
- [{name:'北京'}, {name:'重庆',value:20}],
- [{name:'北京'}, {name:'常州',value:10}]
- ];
- var planePath = 'path://M1705.06,1318.313v-89.254l-319.9-221.799l0.073-208.063c0.521-84.662-26.629-121.796-63.961-121.491c-37.332-0.305-64.482,36.829-63.961,121.491l0.073,208.063l-319.9,221.799v89.254l330.343-157.288l12.238,241.308l-134.449,92.931l0.531,42.034l175.125-42.917l175.125,42.917l0.531-42.034l-134.449-92.931l12.238-241.308L1705.06,1318.313z';
- var convertData = function (data) {
- var res = [];
- for (var i = 0; i < data.length; i++) {
- var dataItem = data[i];
- var fromCoord = geoCoordMap[dataItem[0].name];
- var toCoord = geoCoordMap[dataItem[1].name];
- if (fromCoord && toCoord) {
- res.push([{
- coord: fromCoord
- }, {
- coord: toCoord
- }]);
- }
- }
- return res;
- };
- var color = ['#fff'];
- var series = [];
- [['北京', BJData]].forEach(function (item, i) {
- series.push({
- name: item[0] + '',
- type: 'lines',
- // zlevel: 1,
- effect: {
- show: true,
- period: 6,
- trailLength: 0.7,
- color: '#fff',
- symbolSize: 3
- },
- lineStyle: {
- normal: {
- color: color[i],
- width: 0,
-
- curveness: 0.2
- }
- },
- data: convertData(item[1])
- },
- {
- name: item[0] ,
- type: 'lines',
- zlevel: 2,
- effect: {
- show: true,
- period: 6,
- trailLength: 0,
- symbol: planePath,
- symbolSize: 15
- },
- lineStyle: {
- normal: {
- color: color[i],
- width: 1,
- opacity: 0.4,
- curveness: 0.2
- }
- },
- data: convertData(item[1])
- },
- {
- name: item[0] ,
- type: 'effectScatter',
- coordinateSystem: 'geo',
- zlevel: 2,
- rippleEffect: {
- brushType: 'stroke'
- },
- label: {
- normal: {
- show: true,
- fontSize:16,
- color:'#fff',
- position: 'right',
- formatter: '{b}'
- }
- },
- symbolSize:'10',
- /**symbolSize: function (val) {
- return val[2] / 8;
- },**/
- itemStyle: {
- normal: {
- color: color[i]
- }
- },
- data: item[1].map(function (dataItem) {
- return {
- name: dataItem[1].name,
- value: geoCoordMap[dataItem[1].name].concat([dataItem[1].value])
- };
- })
- });
- });
- option = {
- // backgroundColor: '#404a59',
- title : {
- text: '全国发展路线图',
- subtext: '副标题,不需要主删除此行',
- left: 'center',
- top: '13%',
- textStyle: {
- color: '#fff'
- }
- },
- geo: {
- map: 'china',
- label: {
- emphasis: {
- show: false
- }
- },
- roam: true,
- itemStyle: {
- normal: {
- areaColor: '#2a91e2',
- borderColor: '#0165b4'
- },
- emphasis: {
- areaColor: '#306de8'
- }
- }
- },
- series:series
- };
- // 使用刚指定的配置项和数据显示图表。
- myChart.setOption(option);
- window.addEventListener("resize", function () {
- myChart.resize();
- });
- }
- function echarts_4() {
- var myChart = echarts.init(document.getElementById('echart4'));
- option = {
- tooltip: {
-
- trigger: 'axis',
- axisPointer: {
- lineStyle: {
- color: '#57617B'
- }
- },
- formatter: '{b}:<br/> 完成率{c}%'
- },
- grid: {
- left: '0',
- right: '20',
- top:'10',
- bottom: '20',
- containLabel: true
- },
- xAxis: [{
- type: 'category',
- boundaryGap: false,
- axisLabel: {
- show: true,
- textStyle: {
- color: 'rgba(255,255,255,.6)'
- }
- },
- axisLine: {
- lineStyle: {
- color: 'rgba(255,255,255,.1)'
- }
- },
- data: ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月']
- }],
- yAxis: [{
- axisLabel: {
- show: true,
- textStyle: {
- color: 'rgba(255,255,255,.6)'
- }
- },
- axisLine: {
- lineStyle: {
- color: 'rgba(255,255,255,.1)'
- }
- },
- splitLine: {
- lineStyle: {
- color: 'rgba(255,255,255,.1)'
- }
- }
- }],
- series: [{
- name: '完成率',
- type: 'line',
- smooth: true,
- symbol: 'circle',
- symbolSize: 5,
- showSymbol: false,
- lineStyle: {
- normal: {
- width: 3
- }
- },
- areaStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
- offset: 0,
- color: 'rgba(98, 201, 141, 0.5)'
- }, {
- offset: 1,
- color: 'rgba(98, 201, 141, 0.1)'
- }], false),
- shadowColor: 'rgba(0, 0, 0, 0.1)',
- shadowBlur: 10
- }
- },
- itemStyle: {
- normal: {
- color: '#4cb9cf',
- borderColor: 'rgba(98, 201, 141,0.27)',
- borderWidth: 12
- }
- },
- data: [91, 60, 70, 54, 80, 40, 99, 33, 80, 20, 60, 10]
- }]
- };
- /* */
- // 使用刚指定的配置项和数据显示图表。
- myChart.setOption(option);
- window.addEventListener("resize",function(){
- myChart.resize();
- });
- }
- })
|