123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161 |
- $(function(){
- /*标准*/
- var radar = echarts.init(document.getElementById('radar'));
- option = {
- title: {
- text: ''
- },
- tooltip: {},
- legend: {
- data: ['第一标准', '第二标准','第三标准'],
- x:"center",
- y:'bottom',
- textStyle:{
- color:"#fff"
- }
- },
- color: ['#4c95d9', '#f6731b', '#8cd43f'],
- radar: {
- name:{
- textStyle: {
- //设置颜色
- color:'#fff'
- }
- },
- indicator: [
- { name: 'test1', max: 6500},
- { name: 'test2', max: 16000},
- { name: 'test3', max: 30000},
- { name: 'test4', max: 38000},
- { name: 'test5', max: 52000},
- { name: 'test6', max: 25000}
- ],
- center: ['50%','50%'],
- radius: "58%"
- },
- series: [{
- name: '',
- type: 'radar',
- itemStyle : {
- normal : {
- splitLine: {
- lineStyle: {
- }
- },
- label: {
- show: false,
- textStyle:{
- },
- formatter:function(params) {
- return params.value;}
- },
- }
- },
- data : [
- {
- value : [2400, 10000, 28000, 35000, 50000, 19000],
- name : '第一标准'
- },
- {
- value : [5000, 14000, 28000, 31000, 42000, 21000],
- name : '第二标准'
- },
- {
- value : [6000, 14000, 18000, 21000, 32000, 11000],
- name : '第三标准'
- }
- ]
- }]
- };
- radar.setOption(option);
- //
- //
- //
- /* 飞鸟尽*/
- var graduateyear = echarts.init(document.getElementById('graduateyear'));
- option = {
- title : {
- text:"",
- x:'center',
- y:'top',
- textStyle:
- {
- color:'#fff',
- fontSize:13
- }
- },
- tooltip : {
- trigger: 'axis'
- },
- grid: {
- left: '3%',
- right: '8%',
- bottom: '5%',
- top:"13%",
- containLabel: true
- },
- color:["#72b332",'#35a9e0'],
- legend: {
- data:['test1','test2'],
- show:true,
- right:'15%',
- y:"0",
- textStyle:{
- color:"#999",
- fontSize:'13'
- },
- },
- toolbox: {
- show : false,
- feature : {
- mark : {show: true},
- dataView : {show: true, readOnly: false},
- magicType : {show: true, type: ['line', 'bar', 'stack', 'tiled']},
- restore : {show: true},
- saveAsImage : {show: true}
- }
- },
- calculable : true,
- xAxis : [
- {
- type : 'category',
- boundaryGap : false,
- data : ['2022年','2023年','2024年','2025年','2026年','2027年','2028年'],
- splitLine:{
- show:true,
- lineStyle:{
- color: '#2d3b53'
- }
- },
- axisLabel:{
- textStyle:{
- color:"#fff"
- },
- alignWithLabel: true,
- interval:0,
- rotate:'15'
- }
- }
- ],
- yAxis : [
- {
- type : 'value',
- splitLine:{
- show:true,
- lineStyle:{
- color: '#2d3b53'
- }
- },
- axisLabel:{
- textStyle:{
- color:"#999"
- }
- },
- }
- ],
- series : [
- {
- name:'test1',
- type:'line',
- smooth:true,
- symbol:'roundRect',
- data:[1168,1189,1290,1300,1345,1256,1045]
- },
- {
- name:'test2',
- type:'line',
- smooth:true,
- symbol:'roundRect',
- data:[1234,1290,1311,1145,1045,900,673]
- }
- ]
- };
- graduateyear.setOption(option);
- /*==*/
- var sexrate = echarts.init(document.getElementById('sexrate'));
- var total = {
- name: '=='
- };
- option = {
- title: [{
- text: total.name,
- left: '48%',
- top: '34%',
- textAlign: 'center',
- textBaseline: 'middle',
- textStyle: {
- color: '#fff',
- fontWeight: 'normal',
- fontSize: 18
- }
- }, {
- text: total.value,
- left: '48%',
- top: '44%',
- textAlign: 'center',
- textBaseline: 'middle',
- textStyle: {
- color: '#fff',
- fontWeight: 'normal',
- fontSize: 18
- }
- }],
- tooltip : {
- trigger: 'item',
- formatter: "{a} <br/>{b} : {c} ({d}%)"
- },
- color:['#70a3ff','#ff7f4e'],
- legend: {
- orient: 'vertical',
- x:'center',
- bottom:'5%',
- selectedMode:false,
- formatter:function(name){
- var oa = option.series[0].data;
- var num = oa[0].value + oa[1].value ;
- for(var i = 0; i < option.series[0].data.length; i++){
- if(name==oa[i].name){
- return name + " "+oa[i].value+" "+ (oa[i].value / num * 100).toFixed(2) + '%';
- }
- }
- },
- data: ['test1','test2'],
- show:true,
- textStyle:{
- color:'#fff',
- fontWeight:'bold'
- },
- },
- series : [
- {
- name: 'PK',
- type: 'pie',
- selectedMode: 'single',
- radius: ['45%', '55%'],
- center: ['50%', '40%'],
- data: [
- {value: 2629, name: 'test1'},
- {value: 2507, name: 'test2'}
- ],
- label: {
- normal: {
- show: false,
- position: "outer",
- align:'left',
- textStyle: {
- rotate:true
- }
- }
- },
- itemStyle: {
- emphasis: {
- shadowBlur: 10,
- shadowOffsetX: 0,
- shadowColor: 'rgba(0, 0, 0, 0.5)'
- },
- normal: {
- label:{
- show: true,
- formatter: '{b} {c}'
- }
- }
- }
- }
- ]
- };
- sexrate.setOption(option);
-
-
- var householdrate = echarts.init(document.getElementById('householdrate'));
- var total = {
- name: '=='
- };
- option = {
- title: [{
- text: total.name,
- left: '48%',
- top: '34%',
- textAlign: 'center',
- textBaseline: 'middle',
- textStyle: {
- color: '#fff',
- fontWeight: 'normal',
- fontSize: 18
- }
- }, {
- text: total.value,
- left: '48%',
- top: '44%',
- textAlign: 'center',
- textBaseline: 'middle',
- textStyle: {
- color: '#fff',
- fontWeight: 'normal',
- fontSize: 18
- }
- }],
- tooltip : {
- trigger: 'item',
- formatter: "{a} <br/>{b} : {c} ({d}%)"
- },
- color:['#4f9de7','#4acf79'],
- legend: {
- orient: 'vertical',
- x:'center',
- bottom:'5%',
- selectedMode:false,
- formatter:function(name){
- var oa = option.series[0].data;
- var num = oa[0].value + oa[1].value ;
- for(var i = 0; i < option.series[0].data.length; i++){
- if(name==oa[i].name){
- return name + " "+oa[i].value+" "+ (oa[i].value / num * 100).toFixed(2) + '%';
- }
- }
- },
- data: ['test1','test2'],
- show:true,
- textStyle:{
- color:'#fff',
- fontWeight:'bold'
- },
- },
- series : [
- {
- name: 'FK',
- type: 'pie',
- selectedMode: 'single',
- radius: ['45%', '55%'],
- center: ['50%', '40%'],
- data: [
- {value: 2629, name: 'test1'},
- {value: 2507, name: 'test2'}
- ],
- label: {
- normal: {
- show: false,
- position: "outer",
- align:'left',
- textStyle: {
- rotate:true
- }
- }
- },
- itemStyle: {
- emphasis: {
- shadowBlur: 10,
- shadowOffsetX: 0,
- shadowColor: 'rgba(0, 0, 0, 0.5)'
- },
- normal: {
- label:{
- show: true,
- formatter: '{b} {c}'
- }
- }
- }
- }
- ]
- };
- householdrate.setOption(option);
-
- /* =====-=*/
- var courserate = echarts.init(document.getElementById('courserate'));
- option = {
- tooltip : {
- trigger: 'item',
- formatter: "{a} <br/>{b} : {c} ({d}%)"
- },
- legend: {
- orient: 'vertical',
- right: '0',
- y:'middle',
- textStyle:{
- color:"#fff"
- },
- formatter:function(name){
- var oa = option.series[0].data;
- var num = oa[0].value + oa[1].value + oa[2].value + oa[3].value+oa[4].value+oa[5].value;
- for(var i = 0; i < option.series[0].data.length; i++){
- if(name==oa[i].name){
- return name + ' '+oa[i].value;
- }
- }
- },
- data: ['test1','test2','test3','test4','test5','text6']
- },
- series : [
- {
- name: 'FK',
- type: 'pie',
- radius : '45%',
- color:['#27c2c1','#9ccb63','#fcd85a','#60c1de','#0084c8','#d8514b'],
- center: ['38%', '50%'],
- data:[
- {value:335, name:'test1'},
- {value:310, name:'test2'},
- {value:234, name:'test3'},
- {value:135, name:'test4'},
- {value:234, name:'test5'},
- {value:234, name:'text6'}
- ],
- itemStyle: {
- emphasis: {
- shadowBlur: 10,
- shadowOffsetX: 0,
- shadowColor: 'rgba(0, 0, 0, 0.5)'
- }
- },
- itemStyle: {
- normal: {
- label:{
- show: true,
- position:'outside',
- formatter: '{b}'
- }
- },
- labelLine :{show:true}
- }
- }
- ]
- };
- courserate.setOption(option);
- /* =======*/
- var professionrate = echarts.init(document.getElementById('professionrate'));
- option = {
- tooltip : {
- trigger: 'item',
- formatter: "{a} <br/>{b} : {c} ({d}%)"
- },
- legend: {
- orient: 'vertical',
- right: '0',
- y:'middle',
- textStyle:{
- color:"#fff"
- },
- data: ['test1','test2','test3'],
- formatter:function(name){
- var oa = option.series[0].data;
- var num = oa[0].value + oa[1].value + oa[2].value;
- for(var i = 0; i < option.series[0].data.length; i++){
- if(name==oa[i].name){
- return name + ' '+oa[i].value;
- }
- }
- }
- },
- series : [
- {
- name: 'FK',
- type: 'pie',
- radius : '60%',
- center: ['35%', '50%'],
- data:[
- {value:335, name:'test1'},
- {value:310, name:'test2'},
- {value:234, name:'test3'}
- ],
- itemStyle: {
- emphasis: {
- shadowBlur: 10,
- shadowOffsetX: 0,
- shadowColor: 'rgba(0, 0, 0, 0.5)'
- }
- },
- itemStyle: {
- normal: {
- label:{
- show: true,
- position:'outside',
- formatter: ' {b}'
- }
- },
- labelLine :{show:true}
- }
- }
- ]
- };
- professionrate.setOption(option);
-
- /* 比例变化*/
- var changedetail = echarts.init(document.getElementById('changedetail'));
- option = {
- tooltip: {
- trigger: 'axis',
- formatter: '{b}</br>{a}: {c}</br>{a1}: {c1}'
- },
- toolbox: {
- show:false,
- feature: {
- dataView: {show: true, readOnly: false},
- magicType: {show: true, type: ['line', 'bar']},
- restore: {show: true},
- saveAsImage: {show: true}
- }
- },
- legend: {
- data:['',''],
- show:false
- },
- grid:{
- top:'18%',
- right:'5%',
- bottom:'8%',
- left:'5%',
- containLabel: true
- },
- xAxis: [
- {
- type: 'category',
- data: ['2021年','2022年','2023年','2024年','2025年'],
- splitLine:{
- show:false,
- lineStyle:{
- color: '#3c4452'
- }
- },
- axisTick: {
- show: false
- },
- axisLabel:{
- textStyle:{
- color:"#fff"
- },
- lineStyle:{
- color: '#519cff'
- },
- alignWithLabel: true,
- interval:0
- }
- }
- ],
- yAxis: [
- {
- type: 'value',
- name: '嘎嘎',
- nameTextStyle:{
- color:'#fff'
- },
- interval: 5,
- max:50,
- min: 0,
- splitLine:{
- show:true,
- lineStyle:{
- color: '#23303f'
- }
- },
- axisLine: {
- show:false,
- lineStyle: {
- color: '#115372'
- }
- },
- axisTick: {
- show: false
- },
- axisLabel:{
- textStyle:{
- color:"#fff"
- },
- alignWithLabel: true,
- interval:0
- }
- },
- {
- min: 0,
- max: 2.5,
- interval: 0.5,
- type: 'value',
- name: '哈哈',
- nameTextStyle:{
- color:'#fff'
- },
- splitLine:{
- show:true,
- lineStyle:{
- color: '#23303f'
- }
- },
- axisLine: {
- show:false,
- lineStyle: {
- color: '#115372'
- }
- },
- axisTick: {
- show: false
- },
- axisLabel:{
- textStyle:{
- color:"#fff"
- },
- alignWithLabel: true,
- interval:0
- }
- }
- ],
- color:"yellow",
- series: [
- {
- name:'test1',
- type:'bar',
- data:[2, 4, 7, 23, 25],
- boundaryGap: '45%',
- barWidth:'40%',
- itemStyle: {
- normal: {
- color: function(params) {
- var colorList = [
- '#6bc0fb','#7fec9d','#fedd8b','#ffa597','#84e4dd'
- ];
- return colorList[params.dataIndex]
- },label: {
- show: true,
- position: 'top',
- formatter: '{c}'
- }
- }
- }
- },
- {
- name:'test2',
- type:'line',
- yAxisIndex: 1,
- lineStyle: {
- normal: {
- color:'#c39705'
- }
- },
- data:[1.0, 0.5, 0.8, 0.9, 0.6]
- }
- ]
- };
- changedetail.setOption(option);
- /* ===*/
- var juniorservice = echarts.init(document.getElementById('juniorservice'));
- option = {
- tooltip : {
- trigger: 'axis',
- axisPointer : { // 坐标轴指示器,坐标轴触发有效
- type : 'shadow' // 默认为直线,可选为:'line' | 'shadow'
- }
- },
- color:['#eaff00','#22ac38'],
- legend: {
- right:'0',
- data: ['test1', 'test2'],
- textStyle:{
- color:'#00ffff'
- }
- },
- grid: {
- left: '8%',
- right: '4%',
- bottom: '3%',
- top:'10%',
- containLabel: true
- },
- xAxis: {
- type: 'value',
- splitLine:{
- show:true,
- lineStyle:{
- color: '#1e2b43'
- }
- },
- axisLine: {
- show:false,
- lineStyle: {
- color: '#115372'
- }
- },
- axisTick: {
- show: false
- },
- axisLabel:{
- textStyle:{
- color:"#fff"
- },
- alignWithLabel: true,
- interval:0
- }
- },
- dataZoom: [{
- type: 'slider',
- yAxisIndex: 0,
- filterMode: 'empty',
- start: 0,
- x:'0',
- end: 60,
- handleStyle:{
- color:"#519cff",
- backgroundColor:'#519cff'
- },
- textStyle:{
- color:"#fff"},
- borderColor:"#519cff"
- }],
- yAxis: {
- type: 'category',
- data: ['a','b','c',' d','e','f','g','h','i','j',' k','l','m','n'],
- splitLine:{
- show:false,
- lineStyle:{
- color: '#1e2b43'
- }
- },
- axisTick: {
- show: false
- },
- axisLine: {
- show:true,
- lineStyle: {
- color: '#115372'
- }
- },
- axisLabel:{
- textStyle:{
- color:"#419aff"
- },
- lineStyle:{
- color: '#519cff'
- },
- alignWithLabel: true,
- interval:0
- }
- },
- series: [
- {
- name: 'test1',
- type: 'bar',
- stack: '比例',
- label: {
- normal: {
- show: true,
- position: 'insideRight',
- textStyle:{
- color:'#333'
- }
- }
- },
- data: [320, 302, 301, 334, 390, 330, 320,320, 302, 301, 334, 390, 330,123]
- },
- {
- name: 'test2',
- type: 'bar',
- stack: '比例',
- label: {
- normal: {
- show: true,
- position: 'right',
- textStyle:{
- color:'#00f0ff'
- }
- }
- },
- data: [120, 132, 101, 134, 90, 230, 210,120, 132, 101, 134, 90, 230,243]
- }
- ]
- };
- juniorservice.setOption(option);
- /* ===*/
- var edubalance = echarts.init(document.getElementById('edubalance'));
- option = {
- tooltip: {
- trigger: 'axis',
- formatter: '{b}</br>{a}: {c}</br>{a1}: {c1}</br>{a2}: {c2}</br>{a3}: {c3}'
- },
- toolbox: {
- show:false,
- feature: {
- dataView: {show: true, readOnly: false},
- magicType: {show: true, type: ['line', 'bar']},
- restore: {show: true},
- saveAsImage: {show: true}
- }
- },
- legend: {
- data:['test1','test2','test3','test4','test5'],
- right:"15%",
- textStyle:{
- color:'#fff'
- }
- },
- grid:{
- top:'18%',
- right:'5%',
- bottom:'8%',
- left:'5%',
- containLabel: true
- },
- xAxis: [
- {
- type: 'category',
- data: ['工藤新一','工藤新一','工藤新一','工藤新一'],
- splitLine:{
- show:false,
- lineStyle:{
- color: '#3c4452'
- }
- },
- axisTick: {
- show: false
- },
- axisLabel:{
- textStyle:{
- color:"#fff"
- },
- lineStyle:{
- color: '#519cff'
- },
- alignWithLabel: true,
- interval:0,
- }
- }
- ],
- yAxis: [
- {
- type: 'value',
- nameTextStyle:{
- color:'#fff'
- },
- interval: 5,
- max:50,
- min: 0,
- splitLine:{
- show:true,
- lineStyle:{
- color: '#23303f'
- }
- },
- axisLine: {
- show:false,
- lineStyle: {
- color: '#115372'
- }
- },
- axisTick: {
- show: false
- },
- axisLabel:{
- textStyle:{
- color:"#fff"
- },
- alignWithLabel: true,
- interval:0
- }
- },
- {
- min: 0,
- max: 100,
- interval: 20,
- type: 'value',
- name: '所',
- nameTextStyle:{
- color:'#fff'
- },
- splitLine:{
- show:true,
- lineStyle:{
- color: '#23303f'
- }
- },
- axisLine: {
- show:false,
- lineStyle: {
- color: '#115372'
- }
- },
- axisTick: {
- show: false
- },
- axisLabel:{
- textStyle:{
- color:"#fff"
- },
- alignWithLabel: true,
- interval:0
- }
- }
- ],
- color:"yellow",
- series: [
- {
- name:'test1',
- type:'bar',
- data:[21, 14, 17, 12],
- itemStyle: {
- normal: {
- color: '#76da91'
- },label: {
- show: true,
- position: 'top',
- formatter: '{c}'
- }
- }
- },
- {
- name:'test2',
- type:'bar',
- data:[12, 14, 17, 23],
- itemStyle: {
- normal: {
- color: '#f8cb7f'},
- label: {
- show: true,
- position: 'top',
- formatter: '{c}'
- }
- }
- },
- {
- name:'test3',
- type:'bar',
- data:[12, 14, 17, 13],
- itemStyle: {
- normal: {
- color: '#f89588'},
- label: {
- show: true,
- position: 'top',
- formatter: '{c}'
- }
- }
- },
- {
- name:'test4',
- type:'bar',
- data:[2, 4, 7, 3],
- itemStyle: {
- normal: {
- color: '#7cd6cf'},
- label: {
- show: true,
- position: 'top',
- formatter: '{c}'
- }
- }
- },
- {
- name:'test5',
- type:'line',
- yAxisIndex: 1,
- lineStyle: {
- normal: {
- color:'#c39705'
- }
- },
- data:[30, 10, 90,75]
- }
- ]
- };
- edubalance.setOption(option);
- /* 地图 需要哪个省市的地图直接引用js 将下面的name以及mapType修改为对应省市名称*/
- var maps = echarts.init(document.getElementById('mapadd'));
- option = {
- tooltip : {
- trigger: 'item',
- formatter: '{b}'
- },
- series : [{
- name: '山东',
- type: 'map',
- mapType: '山东',
- roam: false,
- top:'8%',
- zoom:1.2,
- x:'25%',
- selectedMode : 'single',//multiple多选
- itemStyle:{
- normal:{
- label:{
- show:true,
- textStyle: {
- color: "#231816"
- }
- },
- areaStyle:{color:'#B1D0EC'},
- color:'#B1D0EC',
- borderColor:'#dadfde'//区块的边框颜色
- },
- emphasis:{//鼠标hover样式
- label:{
- show:true,
- textStyle:{
- color:'#fa4f04'
- }
- },
- areaStyle:{color:'red'}
- }
- },
- data:[
- {name:'济南市',
- itemStyle: {
- normal: {
- areaColor: '#13d5ff',
- borderColor: '#edce00'
- }
- }
- },
- {name:'德州市',
- itemStyle: {
- normal: {
- areaColor: '#13d5ff',
- borderColor: '#0abcee'
- }
- }
- },
- {name:'聊城市',
- itemStyle: {
- normal: {
- areaColor: '#92d050',
- borderColor: '#1ca9f2'
- }
- }
- },
- {name:'泰安市',
- itemStyle: {
- normal: {
- areaColor: '#88ddf5',
- borderColor: '#88ddf5',
- }
- }
- },
- {name:'莱芜市',
- itemStyle: {
- normal: {
- areaColor: '#13d5ff',
- borderColor: '#45b5ef',
- }
- }
- },
- {name:'菏泽市',
- itemStyle: {
- normal: {
- areaColor: '#13d5ff',
- borderColor: '#45b5ef'
- }
- }
- },
- {name:'枣庄市',
- itemStyle: {
- normal: {
- areaColor: '#45b5ef',
- borderColor: '#45b5ef',
- }
- }
- },
- {name:'济宁市',
- itemStyle: {
- normal: {
- areaColor: '#ffd811',
- borderColor: '#45b5ef',
- }
- }
- },
- {name:'临沂市',
- itemStyle: {
- normal: {
- areaColor: '#ffa312',
- borderColor: '#45b5ef',
- }
- }
- },
- {name:'青岛市',
- itemStyle: {
- normal: {
- areaColor: '#92d050',
- borderColor: '#1ca9f2'
- }
- }
- },
- {name:'烟台市',
- itemStyle: {
- normal: {
- areaColor: '#88ddf5',
- borderColor: '#88ddf5',
- }
- }
- },
- {name:'威海市',
- itemStyle: {
- normal: {
- areaColor: '#13d5ff',
- borderColor: '#45b5ef',
- }
- }
- },
- {name:'潍坊市',
- itemStyle: {
- normal: {
- areaColor: '#13d5ff',
- borderColor: '#45b5ef'
- }
- }
- },
- {name:'淄博市',
- itemStyle: {
- normal: {
- areaColor: '#45b5ef',
- borderColor: '#45b5ef',
- }
- }
- },
- {name:'滨州市',
- itemStyle: {
- normal: {
- areaColor: '#13d5ff',
- borderColor: '#45b5ef',
- }
- }
- },
- {name:'东营市',
- itemStyle: {
- normal: {
- areaColor: 'red',
- borderColor: '#45b5ef',
- }
- }
- },
- {name:'日照市',
- itemStyle: {
- normal: {
- areaColor: 'red',
- borderColor: '#45b5ef',
- }
- }
- },
- ]
- }]
- };
- maps.setOption(option);
- })
|