123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799 |
-
- $(function () {
- echarts_1();
- echarts_2();
- echarts_4();
- echarts_31();
- echarts_32();
- echarts_33();
- echarts_5();
- echarts_6();
- function echarts_1() {
- // 基于准备好的dom,初始化echarts实例
- var myChart = echarts.init(document.getElementById('echart1'));
- option = {
- // backgroundColor: '#00265f',
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'shadow'
- }
- },
- grid: {
- left: '0%',
- top:'10px',
- right: '0%',
- bottom: '4%',
- containLabel: true
- },
- xAxis: [{
- type: 'category',
- data: ['商超门店', '教育培训', '房地产', '生活服务', '汽车销售', '旅游酒店', '五金建材'],
- axisLine: {
- show: true,
- lineStyle: {
- color: "rgba(255,255,255,.1)",
- width: 1,
- type: "solid"
- },
- },
-
- axisTick: {
- show: false,
- },
- axisLabel: {
- interval: 0,
- // rotate:50,
- show: true,
- splitNumber: 15,
- textStyle: {
- color: "rgba(255,255,255,.6)",
- fontSize: '12',
- },
- },
- }],
- yAxis: [{
- type: 'value',
- axisLabel: {
- //formatter: '{value} %'
- show:true,
- textStyle: {
- color: "rgba(255,255,255,.6)",
- fontSize: '12',
- },
- },
- axisTick: {
- show: false,
- },
- axisLine: {
- show: true,
- lineStyle: {
- color: "rgba(255,255,255,.1 )",
- width: 1,
- type: "solid"
- },
- },
- splitLine: {
- lineStyle: {
- color: "rgba(255,255,255,.1)",
- }
- }
- }],
- series: [
- {
- type: 'bar',
- data: [200, 300, 300, 900, 1500, 1200, 600],
- barWidth:'35%', //柱子宽度
- // barGap: 1, //柱子之间间距
- itemStyle: {
- normal: {
- color:'#2f89cf',
- opacity: 1,
- barBorderRadius: 5,
- }
- }
- }
-
- ]
- };
-
- // 使用刚指定的配置项和数据显示图表。
- myChart.setOption(option);
- window.addEventListener("resize",function(){
- myChart.resize();
- });
- }
- function echarts_2() {
- // 基于准备好的dom,初始化echarts实例
- var myChart = echarts.init(document.getElementById('echart2'));
- option = {
- // backgroundColor: '#00265f',
- tooltip: {
- trigger: 'axis',
- axisPointer: { type: 'shadow'}
- },
- grid: {
- left: '0%',
- top:'10px',
- right: '0%',
- bottom: '4%',
- containLabel: true
- },
- xAxis: [{
- type: 'category',
- data: ['浙江', '上海', '江苏', '广东', '北京', '深圳', '安徽'],
- axisLine: {
- show: true,
- lineStyle: {
- color: "rgba(255,255,255,.1)",
- width: 1,
- type: "solid"
- },
- },
-
- axisTick: {
- show: false,
- },
- axisLabel: {
- interval: 0,
- // rotate:50,
- show: true,
- splitNumber: 15,
- textStyle: {
- color: "rgba(255,255,255,.6)",
- fontSize: '12',
- },
- },
- }],
- yAxis: [{
- type: 'value',
- axisLabel: {
- //formatter: '{value} %'
- show:true,
- textStyle: {
- color: "rgba(255,255,255,.6)",
- fontSize: '12',
- },
- },
- axisTick: {
- show: false,
- },
- axisLine: {
- show: true,
- lineStyle: {
- color: "rgba(255,255,255,.1 )",
- width: 1,
- type: "solid"
- },
- },
- splitLine: {
- lineStyle: {
- color: "rgba(255,255,255,.1)",
- }
- }
- }],
- series: [
- {
-
- type: 'bar',
- data: [1500, 1200, 600, 200, 300, 300, 900],
- barWidth:'35%', //柱子宽度
- // barGap: 1, //柱子之间间距
- itemStyle: {
- normal: {
- color:'#27d08a',
- opacity: 1,
- barBorderRadius: 5,
- }
- }
- }
-
- ]
- };
-
- // 使用刚指定的配置项和数据显示图表。
- myChart.setOption(option);
- window.addEventListener("resize",function(){
- myChart.resize();
- });
- }
- function echarts_5() {
- // 基于准备好的dom,初始化echarts实例
- var myChart = echarts.init(document.getElementById('echart5'));
- option = {
- // backgroundColor: '#00265f',
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- type: 'shadow'
- }
- },
-
- grid: {
- left: '0%',
- top:'10px',
- right: '0%',
- bottom: '2%',
- containLabel: true
- },
- xAxis: [{
- type: 'category',
- data: ['浙江', '上海', '江苏', '广东', '北京', '深圳', '安徽', '四川'],
- axisLine: {
- show: true,
- lineStyle: {
- color: "rgba(255,255,255,.1)",
- width: 1,
- type: "solid"
- },
- },
-
- axisTick: {
- show: false,
- },
- axisLabel: {
- interval: 0,
- // rotate:50,
- show: true,
- splitNumber: 15,
- textStyle: {
- color: "rgba(255,255,255,.6)",
- fontSize: '12',
- },
- },
- }],
- yAxis: [{
- type: 'value',
- axisLabel: {
- //formatter: '{value} %'
- show:true,
- textStyle: {
- color: "rgba(255,255,255,.6)",
- fontSize: '12',
- },
- },
- axisTick: {
- show: false,
- },
- axisLine: {
- show: true,
- lineStyle: {
- color: "rgba(255,255,255,.1 )",
- width: 1,
- type: "solid"
- },
- },
- splitLine: {
- lineStyle: {
- color: "rgba(255,255,255,.1)",
- }
- }
- }],
- series: [{
- type: 'bar',
- data: [2, 3, 3, 9, 15, 12, 6, 4, 6, 7, 4, 10],
- barWidth:'35%', //柱子宽度
- // barGap: 1, //柱子之间间距
- itemStyle: {
- normal: {
- color:'#2f89cf',
- opacity: 1,
- barBorderRadius: 5,
- }
- }
- }
- ]
- };
-
- // 使用刚指定的配置项和数据显示图表。
- myChart.setOption(option);
- window.addEventListener("resize",function(){
- myChart.resize();
- });
- }
-
- function echarts_4() {
- // 基于准备好的dom,初始化echarts实例
- var myChart = echarts.init(document.getElementById('echart4'));
- option = {
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- lineStyle: {
- color: '#dddc6b'
- }
- }
- },
- legend: {
- top:'0%',
- data:['安卓','IOS'],
- textStyle: {
- color: 'rgba(255,255,255,.5)',
- fontSize:'12',
- }
- },
- grid: {
- left: '10',
- top: '30',
- right: '10',
- bottom: '10',
- containLabel: true
- },
- xAxis: [{
- type: 'category',
- boundaryGap: false,
- axisLabel: {
- textStyle: {
- color: "rgba(255,255,255,.6)",
- fontSize:12,
- },
- },
- axisLine: {
- lineStyle: {
- color: 'rgba(255,255,255,.2)'
- }
- },
- data: ['01', '02', '03', '04', '05', '06', '07', '08', '09', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24']
- }, {
- axisPointer: {show: false},
- axisLine: { show: false},
- position: 'bottom',
- offset: 20,
-
- }],
- yAxis: [{
- type: 'value',
- axisTick: {show: false},
- axisLine: {
- lineStyle: {
- color: 'rgba(255,255,255,.1)'
- }
- },
- axisLabel: {
- textStyle: {
- color: "rgba(255,255,255,.6)",
- fontSize:12,
- },
- },
- splitLine: {
- lineStyle: {
- color: 'rgba(255,255,255,.1)'
- }
- }
- }],
- series: [
- {
- name: '安卓',
- type: 'line',
- smooth: true,
- symbol: 'circle',
- symbolSize: 5,
- showSymbol: false,
- lineStyle: {
-
- normal: {
- color: '#0184d5',
- width: 2
- }
- },
- areaStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
- offset: 0,
- color: 'rgba(1, 132, 213, 0.4)'
- }, {
- offset: 0.8,
- color: 'rgba(1, 132, 213, 0.1)'
- }], false),
- shadowColor: 'rgba(0, 0, 0, 0.1)',
- }
- },
- itemStyle: {
- normal: {
- color: '#0184d5',
- borderColor: 'rgba(221, 220, 107, .1)',
- borderWidth: 12
- }
- },
- data: [3, 4, 3, 4, 3, 4, 3, 6, 2, 4, 2, 4,3, 4, 3, 4, 3, 4, 3, 6, 2, 4, 2, 4]
- },
- {
- name: 'IOS',
- type: 'line',
- smooth: true,
- symbol: 'circle',
- symbolSize: 5,
- showSymbol: false,
- lineStyle: {
-
- normal: {
- color: '#00d887',
- width: 2
- }
- },
- areaStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
- offset: 0,
- color: 'rgba(0, 216, 135, 0.4)'
- }, {
- offset: 0.8,
- color: 'rgba(0, 216, 135, 0.1)'
- }], false),
- shadowColor: 'rgba(0, 0, 0, 0.1)',
- }
- },
- itemStyle: {
- normal: {
- color: '#00d887',
- borderColor: 'rgba(221, 220, 107, .1)',
- borderWidth: 12
- }
- },
- data: [5, 3, 5, 6, 1, 5, 3, 5, 6, 4, 6, 4, 8, 3, 5, 6, 1, 5, 3, 7, 2, 5, 1, 4]
- },
-
- ]
- };
-
- // 使用刚指定的配置项和数据显示图表。
- myChart.setOption(option);
- window.addEventListener("resize",function(){
- myChart.resize();
- });
- }
- function echarts_6() {
- // 基于准备好的dom,初始化echarts实例
- var myChart = echarts.init(document.getElementById('echart6'));
- var dataStyle = {
- normal: {
- label: {
- show: false
- },
- labelLine: {
- show: false
- },
- //shadowBlur: 40,
- //shadowColor: 'rgba(40, 40, 40, 1)',
- }
- };
- var placeHolderStyle = {
- normal: {
- color: 'rgba(255,255,255,.05)',
- label: {show: false,},
- labelLine: {show: false}
- },
- emphasis: {
- color: 'rgba(0,0,0,0)'
- }
- };
- option = {
- color: ['#0f63d6', '#0f78d6', '#0f8cd6', '#0fa0d6', '#0fb4d6'],
- tooltip: {
- show: true,
- formatter: "{a} : {c} "
- },
- legend: {
- itemWidth: 10,
- itemHeight: 10,
- itemGap: 12,
- bottom: '3%',
-
- data: ['浙江', '上海', '广东', '北京', '深圳'],
- textStyle: {
- color: 'rgba(255,255,255,.6)',
- }
- },
-
- series: [
- {
- name: '浙江',
- type: 'pie',
- clockWise: false,
- center: ['50%', '42%'],
- radius: ['59%', '70%'],
- itemStyle: dataStyle,
- hoverAnimation: false,
- data: [{
- value: 80,
- name: '01'
- }, {
- value: 20,
- name: 'invisible',
- tooltip: {show: false},
- itemStyle: placeHolderStyle
- }]
- },
- {
- name: '上海',
- type: 'pie',
- clockWise: false,
- center: ['50%', '42%'],
- radius: ['49%', '60%'],
- itemStyle: dataStyle,
- hoverAnimation: false,
- data: [{
- value: 70,
- name: '02'
- }, {
- value: 30,
- name: 'invisible',
- tooltip: {show: false},
- itemStyle: placeHolderStyle
- }]
- },
- {
- name: '广东',
- type: 'pie',
- clockWise: false,
- hoverAnimation: false,
- center: ['50%', '42%'],
- radius: ['39%', '50%'],
- itemStyle: dataStyle,
- data: [{
- value: 65,
- name: '03'
- }, {
- value: 35,
- name: 'invisible',
- tooltip: {show: false},
- itemStyle: placeHolderStyle
- }]
- },
- {
- name: '北京',
- type: 'pie',
- clockWise: false,
- hoverAnimation: false,
- center: ['50%', '42%'],
- radius: ['29%', '40%'],
- itemStyle: dataStyle,
- data: [{
- value: 60,
- name: '04'
- }, {
- value: 40,
- name: 'invisible',
- tooltip: {show: false},
- itemStyle: placeHolderStyle
- }]
- },
- {
- name: '深圳',
- type: 'pie',
- clockWise: false,
- hoverAnimation: false,
- center: ['50%', '42%'],
- radius: ['20%', '30%'],
- itemStyle: dataStyle,
- data: [{
- value: 50,
- name: '05'
- }, {
- value: 50,
- name: 'invisible',
- tooltip: {show: false},
- itemStyle: placeHolderStyle
- }]
- }, ]
- };
-
- // 使用刚指定的配置项和数据显示图表。
- myChart.setOption(option);
- window.addEventListener("resize",function(){
- myChart.resize();
- });
- }
- function echarts_31() {
- // 基于准备好的dom,初始化echarts实例
- var myChart = echarts.init(document.getElementById('fb1'));
- option = {
-
- title: [{
- text: '年龄分布',
- left: 'center',
- textStyle: {
- color: '#fff',
- fontSize:'16'
- }
- }],
- tooltip: {
- trigger: 'item',
- formatter: "{a} <br/>{b}: {c} ({d}%)",
- position:function(p){ //其中p为当前鼠标的位置
- return [p[0] + 10, p[1] - 10];
- }
- },
- legend: {
-
- top:'70%',
- itemWidth: 10,
- itemHeight: 10,
- data:['0岁以下','20-29岁','30-39岁','40-49岁','50岁以上'],
- textStyle: {
- color: 'rgba(255,255,255,.5)',
- fontSize:'12',
- }
- },
- series: [
- {
- name:'年龄分布',
- type:'pie',
- center: ['50%', '42%'],
- radius: ['40%', '60%'],
- color: ['#065aab', '#066eab', '#0682ab', '#0696ab', '#06a0ab','#06b4ab','#06c8ab','#06dcab','#06f0ab'],
- label: {show:false},
- labelLine: {show:false},
- data:[
- {value:1, name:'0岁以下'},
- {value:4, name:'20-29岁'},
- {value:2, name:'30-39岁'},
- {value:2, name:'40-49岁'},
- {value:1, name:'50岁以上'},
- ]
- }
- ]
- };
-
- // 使用刚指定的配置项和数据显示图表。
- myChart.setOption(option);
- window.addEventListener("resize",function(){
- myChart.resize();
- });
- }
- function echarts_32() {
- // 基于准备好的dom,初始化echarts实例
- var myChart = echarts.init(document.getElementById('fb2'));
- option = {
-
- title: [{
- text: '职业分布',
- left: 'center',
- textStyle: {
- color: '#fff',
- fontSize:'16'
- }
- }],
- tooltip: {
- trigger: 'item',
- formatter: "{a} <br/>{b}: {c} ({d}%)",
- position:function(p){ //其中p为当前鼠标的位置
- return [p[0] + 10, p[1] - 10];
- }
- },
- legend: {
-
- top:'70%',
- itemWidth: 10,
- itemHeight: 10,
- data:['电子商务','教育','IT/互联网','金融','学生','其他'],
- textStyle: {
- color: 'rgba(255,255,255,.5)',
- fontSize:'12',
- }
- },
- series: [
- {
- name:'年龄分布',
- type:'pie',
- center: ['50%', '42%'],
- radius: ['40%', '60%'],
- color: ['#065aab', '#066eab', '#0682ab', '#0696ab', '#06a0ab','#06b4ab','#06c8ab','#06dcab','#06f0ab'],
- label: {show:false},
- labelLine: {show:false},
- data:[
- {value:5, name:'电子商务'},
- {value:1, name:'教育'},
- {value:6, name:'IT/互联网'},
- {value:2, name:'金融'},
- {value:1, name:'学生'},
- {value:1, name:'其他'},
- ]
- }
- ]
- };
-
- // 使用刚指定的配置项和数据显示图表。
- myChart.setOption(option);
- window.addEventListener("resize",function(){
- myChart.resize();
- });
- }
- function echarts_33() {
- // 基于准备好的dom,初始化echarts实例
- var myChart = echarts.init(document.getElementById('fb3'));
- option = {
- title: [{
- text: '兴趣分布',
- left: 'center',
- textStyle: {
- color: '#fff',
- fontSize:'16'
- }
- }],
- tooltip: {
- trigger: 'item',
- formatter: "{a} <br/>{b}: {c} ({d}%)",
- position:function(p){ //其中p为当前鼠标的位置
- return [p[0] + 10, p[1] - 10];
- }
- },
- legend: {
- top:'70%',
- itemWidth: 10,
- itemHeight: 10,
- data:['汽车','旅游','财经','教育','软件','其他'],
- textStyle: {
- color: 'rgba(255,255,255,.5)',
- fontSize:'12',
- }
- },
- series: [
- {
- name:'兴趣分布',
- type:'pie',
- center: ['50%', '42%'],
- radius: ['40%', '60%'],
- color: ['#065aab', '#066eab', '#0682ab', '#0696ab', '#06a0ab','#06b4ab','#06c8ab','#06dcab','#06f0ab'],
- label: {show:false},
- labelLine: {show:false},
- data:[
- {value:2, name:'汽车'},
- {value:3, name:'旅游'},
- {value:1, name:'财经'},
- {value:4, name:'教育'},
- {value:8, name:'软件'},
- {value:1, name:'其他'},
- ]
- }
- ]
- };
-
- // 使用刚指定的配置项和数据显示图表。
- myChart.setOption(option);
- window.addEventListener("resize",function(){
- myChart.resize();
- });
- }
-
-
- })
-
-
-
-
|