123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766 |
- /* */
- $(window).load(function(){
- $(".loading").fadeOut()
- })
- $(function () {
- echarts_1();
- echarts_2();
- echarts_3();
- echarts_4();
- echarts_5();
- zb1();
- zb2();
- zb3();
- function echarts_1() {
- // 基于准备好的dom,初始化echarts实例
- var myChart = echarts.init(document.getElementById('echart1'));
- option = {
- tooltip : {
- trigger: 'item',
- formatter: "{b} : {c} ({d}%)"
- },
- legend: {
- right:0,
- top:30,
- height:160,
- itemWidth:10,
- itemHeight:10,
- itemGap:10,
- textStyle:{
- color: 'rgba(255,255,255,.6)',
- fontSize:12
- },
- orient:'vertical',
- data:['图例1','图例2','图例3','图例4','图例5']
- },
- calculable : true,
- series : [
- {
- name:' ',
- color: ['#62c98d', '#2f89cf', '#4cb9cf', '#53b666', '#62c98d', '#205acf', '#c9c862', '#c98b62', '#c962b9', '#7562c9','#c96262','#c25775','#00b7be'],
- type:'pie',
- radius : [30, 70],
- center : ['35%', '50%'],
- roseType : 'radius',
- label: {
- normal: {
- show: true
- },
- emphasis: {
- show: true
- }
- },
- lableLine: {
- normal: {
- show: true
- },
- emphasis: {
- show: true
- }
- },
- data:[
- {value:10, name:'图例1'},
- {value:5, name:'图例2'},
- {value:15, name:'图例3'},
- {value:25, name:'图例4'},
- {value:20, name:'图例5'},
-
- ]
- },
- ]
- };
- // 使用刚指定的配置项和数据显示图表。
- myChart.setOption(option);
- window.addEventListener("resize",function(){
- myChart.resize();
- });
- }
- /* */
- function echarts_2() {
- // 基于准备好的dom,初始化echarts实例
- var myChart = echarts.init(document.getElementById('echart2'));
- option = {
- tooltip: {
- trigger: 'item',
- formatter: "{b} : {c} ({d}%)"
- },
- legend: {
-
- top:'15%',
- data: ['图例1', '图例2', '图例3', '图例4', '图例5'],
- icon: 'circle',
- textStyle: {
- color: 'rgba(255,255,255,.6)',
- }
- },
- calculable: true,
- series: [{
- name: '',
- color: ['#62c98d', '#2f89cf', '#4cb9cf', '#53b666', '#62c98d', '#205acf', '#c9c862', '#c98b62', '#c962b9','#c96262'],
- type: 'pie',
- //起始角度,支持范围[0, 360]
- startAngle: 0,
- //饼图的半径,数组的第一项是内半径,第二项是外半径
- radius: [51, 100],
- //支持设置成百分比,设置成百分比时第一项是相对于容器宽度,第二项是相对于容器高度
- center: ['50%', '45%'],
-
- //是否展示成南丁格尔图,通过半径区分数据大小。可选择两种模式:
- // 'radius' 面积展现数据的百分比,半径展现数据的大小。
- // 'area' 所有扇区面积相同,仅通过半径展现数据大小
- roseType: 'area',
- //是否启用防止标签重叠策略,默认开启,圆环图这个例子中需要强制所有标签放在中心位置,可以将该值设为 false。
- avoidLabelOverlap: false,
- label: {
- normal: {
- show: true,
- // formatter: '{c}辆'
- },
- emphasis: {
- show: true
- }
- },
- labelLine: {
- normal: {
- show: true,
- length2: 1,
- },
- emphasis: {
- show: true
- }
- },
- data: [
- {value: 1,name: '图例1',},
- {value: 4,name: '图例2',},
- {value: 5,name: '图例3',},
- {value: 6,name: '图例4',},
- {value: 9,name: '图例5',},
-
-
- {value: 0, name: "",label: {show: false},labelLine: {show: false}},
- {value: 0, name: "",label: {show: false},labelLine: {show: false}},
- {value: 0, name: "",label: {show: false},labelLine: {show: false}},
- {value: 0, name: "",label: {show: false},labelLine: {show: false}},
- {value: 0, name: "",label: {show: false},labelLine: {show: false}},
-
- ]
- }]
- };
- // 使用刚指定的配置项和数据显示图表。
- myChart.setOption(option);
- window.addEventListener("resize",function(){
- myChart.resize();
- });
- }
- function echarts_3() {
- // 基于准备好的dom,初始化echarts实例
- var myChart = echarts.init(document.getElementById('echart3'));
- option = {
- tooltip: {
- trigger: 'axis',
- axisPointer: {
- lineStyle: {
- color: '#57617B'
- }
- }
- },
- legend: {
-
- //icon: 'vertical',
- data: ['销售额', '利润'],
- //align: 'center',
- // right: '35%',
- top:'0',
- textStyle: {
- color: "#fff"
- },
- // itemWidth: 15,
- // itemHeight: 15,
- itemGap: 20,
- },
- 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: 2
- }
- },
- areaStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
- offset: 0,
- color: 'rgba(24, 163, 64, 0.3)'
- }, {
- offset: 0.8,
- color: 'rgba(24, 163, 64, 0)'
- }], false),
- shadowColor: 'rgba(0, 0, 0, 0.1)',
- shadowBlur: 10
- }
- },
- itemStyle: {
- normal: {
- color: '#cdba00',
- borderColor: 'rgba(137,189,2,0.27)',
- borderWidth: 12
- }
- },
- data: [220, 182, 191, 134, 150, 120, 110, 125, 145, 122, 165, 122]
- }, {
- name: '利润',
- type: 'line',
- smooth: true,
- symbol: 'circle',
- symbolSize: 5,
- showSymbol: false,
- lineStyle: {
- normal: {
- width: 2
- }
- },
- areaStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
- offset: 0,
- color: 'rgba(39, 122,206, 0.3)'
- }, {
- offset: 0.8,
- color: 'rgba(39, 122,206, 0)'
- }], false),
- shadowColor: 'rgba(0, 0, 0, 0.1)',
- shadowBlur: 10
- }
- },
- itemStyle: {
- normal: {
- color: '#277ace',
- borderColor: 'rgba(0,136,212,0.2)',
- borderWidth: 12
- }
- },
- data: [120, 110, 125, 145, 122, 165, 122, 220, 182, 191, 134, 150]
- }]
- };
- // 使用刚指定的配置项和数据显示图表。
- 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: '#57617B'
- }
- }
- },
- "legend": {
-
- "data": [
- {"name": "图例1"},
- {"name": "图例2"},
- {"name": "完成率"}
- ],
- "top": "0%",
- "textStyle": {
- "color": "rgba(255,255,255,0.9)"//图例文字
- }
- },
-
- "xAxis": [
- {
- "type": "category",
-
- data: ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月'],
- axisLine: { lineStyle: {color: "rgba(255,255,255,.1)"}},
- axisLabel: { textStyle: {color: "rgba(255,255,255,.6)", fontSize: '14', },
- },
-
- },
- ],
- "yAxis": [
- {
- "type": "value",
- "name": "金额",
- "min": 0,
- "max": 50,
- "interval": 10,
- "axisLabel": {
- "show": true,
-
- },
- axisLine: {lineStyle: {color: 'rgba(255,255,255,.4)'}},//左线色
-
- },
- {
- "type": "value",
- "name": "完成率",
- "show": true,
- "axisLabel": {
- "show": true,
-
- },
- axisLine: {lineStyle: {color: 'rgba(255,255,255,.4)'}},//右线色
- splitLine: {show:true,lineStyle: {color:"#001e94"}},//x轴线
- },
- ],
- "grid": {
- "top": "10%",
- "right":"30",
- "bottom":"30",
- "left":"30",
- },
- "series": [
- {
- "name": "图例1",
-
- "type": "bar",
- "data": [4,6,36,6,8,6,4,6,30,6,8,12],
- "barWidth": "auto",
- "itemStyle": {
- "normal": {
- "color": {
- "type": "linear",
- "x": 0,
- "y": 0,
- "x2": 0,
- "y2": 1,
- "colorStops": [
- {
- "offset": 0,
- "color": "#609db8"
- },
-
- {
- "offset": 1,
- "color": "#609db8"
- }
- ],
- "globalCoord": false
- }
- }
- }
- },
- {
- "name": "图例2",
- "type": "bar",
- "data": [
- 4,2,34,6,8,6,4,2,32,6,8,18
- ],
- "barWidth": "auto",
-
- "itemStyle": {
- "normal": {
- "color": {
- "type": "linear",
- "x": 0,
- "y": 0,
- "x2": 0,
- "y2": 1,
- "colorStops": [
- {
- "offset": 0,
- "color": "#66b8a7"
- },
- {
- "offset": 1,
- "color": "#66b8a7"
- }
- ],
- "globalCoord": false
- }
- }
- },
- "barGap": "0"
- },
- {
- "name": "完成率",
- "type": "line",
- "yAxisIndex": 1,
-
- "data": [100,50,80,30,90,40, 70,33,100,40,80,20],
- lineStyle: {
- normal: {
- width: 2
- },
- },
- "itemStyle": {
- "normal": {
- "color": "#cdba00",
-
- }
- },
- "smooth": true
- }
- ]
- };
-
- // 使用刚指定的配置项和数据显示图表。
- myChart.setOption(option);
- window.addEventListener("resize",function(){
- myChart.resize();
- });
- }
-
- function echarts_5() {
- // 基于准备好的dom,初始化echarts实例
- var myChart = echarts.init(document.getElementById('echart5'));
- // 颜色
- var lightBlue = {
- type: 'linear',
- x: 0,
- y: 0,
- x2: 0,
- y2: 1,
- colorStops: [{
- offset: 0,
- color: 'rgba(41, 121, 255, 1)'
- }, {
- offset: 1,
- color: 'rgba(0, 192, 255, 1)'
- }],
- globalCoord: false
- }
- var option = {
- tooltip: {
- show: false
- },
- grid: {
- top: '0%',
- left: '65',
- right: '14%',
- bottom: '0%',
- },
- xAxis: {
- min: 0,
- max: 100,
- splitLine: {
- show: false
- },
- axisTick: {
- show: false
- },
- axisLine: {
- show: false
- },
- axisLabel: {
- show: false
- }
- },
- yAxis: {
- data: ['字段名称', '字段名称', '字段名称','字段名称','字段名称','字段名称','字段名称','字段名称','字段名称','字段名称','字段名称'],
- //offset: 15,
- axisTick: {
- show: false
- },
- axisLine: {
- show: false
- },
- axisLabel: {
- color: 'rgba(255,255,255,.6)',
- fontSize: 14
- }
- },
- series: [{
- type: 'bar',
- label: {
- show: true,
- zlevel: 10000,
- position: 'right',
- padding: 10,
- color: '#49bcf7',
- fontSize: 14,
- formatter: '{c}%'
-
- },
- itemStyle: {
- color:'#49bcf7'
- },
- barWidth: '15',
- data: [49, 80, 67, 99, 12, 19, 39, 84, 28, 47, 57, 100],
- z: 10
- }, {
- type: 'bar',
- barGap: '-100%',
- itemStyle: {
- color:'#fff',
- opacity: 0.1
- },
- barWidth: '15',
- data: [100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100, 100],
- z: 5
- }],
- };
- // 使用刚指定的配置项和数据显示图表。
- myChart.setOption(option);
- window.addEventListener("resize",function(){
- myChart.resize();
- });
- }
-
-
- function zb1() {
- // 基于准备好的dom,初始化echarts实例
- var myChart = echarts.init(document.getElementById('zb1'));
- var v1=298//男消费
- var v2=523//女消费
- var v3=v1+v2//总消费
- option = {
- series: [{
-
- type: 'pie',
- radius: ['60%', '70%'],
- color:'#49bcf7',
- label: {
- normal: {
- position: 'center'
- }
- },
- data: [{
- value: v2,
- name: '女消费',
- label: {
- normal: {
- formatter: v2 +'',
- textStyle: {
- fontSize: 20,
- color:'#fff',
- }
- }
- }
- }, {
- value: v1,
- name: '男消费',
- label: {
- normal: {
- formatter : function (params){
- return '占比'+Math.round( v2/v3*100)+ '%'
- },
- textStyle: {
- color: '#aaa',
- fontSize: 12
- }
- }
- },
- itemStyle: {
- normal: {
- color: 'rgba(255,255,255,.2)'
- },
- emphasis: {
- color: '#fff'
- }
- },
- }]
- }]
- };
- myChart.setOption(option);
- window.addEventListener("resize",function(){
- myChart.resize();
- });
- }
- function zb2() {
- // 基于准备好的dom,初始化echarts实例
- var myChart = echarts.init(document.getElementById('zb2'));
- var v1=298//男消费
- var v2=523//女消费
- var v3=v1+v2//总消费
- option = {
-
- //animation: false,
- series: [{
- type: 'pie',
- radius: ['60%', '70%'],
- color:'#cdba00',
- label: {
- normal: {
- position: 'center'
- }
- },
- data: [{
- value: v1,
- name: '男消费',
- label: {
- normal: {
- formatter: v1 +'',
- textStyle: {
- fontSize: 20,
- color:'#fff',
- }
- }
- }
- }, {
- value: v2,
- name: '女消费',
- label: {
- normal: {
- formatter : function (params){
- return '占比'+Math.round( v1/v3*100)+ '%'
- },
- textStyle: {
- color: '#aaa',
- fontSize: 12
- }
- }
- },
- itemStyle: {
- normal: {
- color: 'rgba(255,255,255,.2)'
- },
- emphasis: {
- color: '#fff'
- }
- },
- }]
- }]
- };
- myChart.setOption(option);
- window.addEventListener("resize",function(){
- myChart.resize();
- });
- }
- /* */
- function zb3() {
- // 基于准备好的dom,初始化echarts实例
- var myChart = echarts.init(document.getElementById('zb3'));
- var v1=298//男消费
- var v2=523//女消费
- var v3=v1+v2//总消费
- option = {
- series: [{
-
- type: 'pie',
- radius: ['60%', '70%'],
- color:'#62c98d',
- label: {
- normal: {
- position: 'center'
- }
- },
- data: [{
- value: v2,
- name: '女消费',
- label: {
- normal: {
- formatter: v2 +'',
- textStyle: {
- fontSize: 20,
- color:'#fff',
- }
- }
- }
- }, {
- value: v1,
- name: '男消费',
- label: {
- normal: {
- formatter : function (params){
- return '占比'+Math.round( v2/v3*100)+ '%'
- },
- textStyle: {
- color: '#aaa',
- fontSize: 12
- }
- }
- },
- itemStyle: {
- normal: {
- color: 'rgba(255,255,255,.2)'
- },
- emphasis: {
- color: '#fff'
- }
- },
- }]
- }]
- };
- myChart.setOption(option);
- window.addEventListener("resize",function(){
- myChart.resize();
- });
- }
- })
-
-
-
-
|