123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639 |
- /**
- * echarts简单封装
- * 冯海夫
- * 20201008
- */
- var ChartsService = {
- // 大间隔
- getGridSpanBig:function(){
- return {
- grid:{
- left:"20%",
- right:"10%",
- bottom:"25%",
- top:"10%"
- }
- };
- },
- // 小间隔
- getGridSpanSmall:function(){
- return {
- grid:{
- left:"10%",
- right:"10%",
- bottom:"15%",
- top:"10%"
- }
- };
- },
- // 通用的柱状图
- // divId:待显示的div id, data:json对象
- initCommonBar: function (divId, data, grid) {
- var myChart = echarts.init(document.getElementById(divId));
- const xDataList = [];
- const yDataList = [];
- for (var val in data) {
- xDataList.push(val);
- yDataList.push(data[val]);
- }
- var option = {
- color: ['#37a2da'],
- grid:{
- left:"20%",
- right:"10%",
- bottom:"25%",
- top:"10%"
- },
- xAxis: {
- type: 'category',
- data: xDataList,
- axisLabel: {
- show: true,
- textStyle: {
- color: '#ffffff', //更改坐标轴文字颜色
- fontSize: 14 //更改坐标轴文字大小
- },
- interval:0,
- rotate:30
- },
- axisLine: {
- lineStyle: {
- type: 'solid',
- color: '#37a2da', //左边线的颜色
- width: '1' //坐标线的宽度
- }
- },
- splitLine: {
- show: false
- }
- },
- yAxis: {
- type: 'value',
- axisLabel: {
- show: true,
- textStyle: {
- color: '#ffffff', //更改坐标轴文字颜色
- fontSize: 14 //更改坐标轴文字大小
- }
- },
- axisLine: {
- lineStyle: {
- type: 'solid',
- color: '#37a2da', //左边线的颜色
- width: '1' //坐标线的宽度
- }
- },
- splitLine: {
- show: true,
- lineStyle: {
- color: ['#37a2da'],
- width: 1,
- type: 'solid'
- }
- }
- },
- series: [{
- data: yDataList,
- type: 'bar',
- showBackground: false,
- backgroundStyle: {
- color: 'rgba(220, 220, 220, 0.8)'
- },
- itemStyle: {
- normal: {
- label: {
- show: true,
- position: 'top',
- textStyle: {
- color: '#ffffff'
- }
- }
- }
- },
- }]
- };
- if (grid != null && grid != undefined){
- option.grid = grid;
- }
- // 使用刚指定的配置项和数据显示图表。
- myChart.setOption(option);
- window.addEventListener("resize", function () {
- myChart.resize();
- });
- },
- // 带阴影柱状图柱状图
- // divId:待显示的div id, data:json对象
- initBarWithShade: function (divId, data, grid) {
- var myChart = echarts.init(document.getElementById(divId));
- const xDataList = [];
- const yDataList = [];
- for (var val in data) {
- xDataList.push(val);
- yDataList.push(data[val]);
- }
- var option = {
- color: ['#37a2da'],
- grid:{
- left:"20%",
- right:"10%",
- bottom:"25%",
- top:"10%"
- },
- xAxis: {
- type: 'category',
- data: xDataList,
- axisLabel: {
- show: true,
- textStyle: {
- color: '#ffffff', //更改坐标轴文字颜色
- fontSize: 14 //更改坐标轴文字大小
- },
- interval:0,
- rotate:30
- },
- axisLine: {
- lineStyle: {
- type: 'solid',
- color: '#37a2da', //左边线的颜色
- width: '1' //坐标线的宽度
- }
- },
- splitLine: {
- show: false
- }
- },
- yAxis: {
- type: 'value',
- axisLabel: {
- show: true,
- textStyle: {
- color: '#ffffff', //更改坐标轴文字颜色
- fontSize: 14 //更改坐标轴文字大小
- }
- },
- axisLine: {
- lineStyle: {
- type: 'solid',
- color: '#37a2da', //左边线的颜色
- width: '1' //坐标线的宽度
- }
- },
- splitLine: {
- show: true,
- lineStyle: {
- color: ['#37a2da'],
- width: 1,
- type: 'solid'
- }
- }
- },
- series: [{
- data: yDataList,
- type: 'bar',
- showBackground: true,
- backgroundStyle: {
- color: 'rgba(220, 220, 220, 0.8)'
- },
- itemStyle: {
- normal: {
- label: {
- show: true,
- position: 'top',
- textStyle: {
- color: '#ffffff'
- }
- }
- }
- },
- }]
- };
- if (grid != null && grid != undefined){
- option.grid = grid;
- }
- // 使用刚指定的配置项和数据显示图表。
- myChart.setOption(option);
- window.addEventListener("resize", function () {
- myChart.resize();
- });
- },
- // 上下两端都有数字的柱状图,算比例
- // divId:待显示的div id, data:json数组,label,sum1:下柱数,sum2:总熟
- initBarWithTwoNumberRate: function (divId, data, grid) {
- var myChart = echarts.init(document.getElementById(divId));
- const xDataList = [];
- const yDataList = [];
- const yDataList2 = []
- $.each(data, function (index, item) {
- xDataList.push(item.label);
- const sum1 = (item.sum1 / item.sum2 * 100).toFixed(0);
- yDataList.push(sum1);
- yDataList2.push(100 - sum1);
- });
- var option = {
- color: ['#37a2da', '#ffd85c'],
- grid:{
- left:"20%",
- right:"10%",
- bottom:"25%",
- top:"10%"
- },
- xAxis: {
- type: 'category',
- data: xDataList,
- axisLabel: {
- show: true,
- textStyle: {
- color: '#ffffff', //更改坐标轴文字颜色
- fontSize: 14 //更改坐标轴文字大小
- },
- interval:0,
- rotate:30
- },
- axisLine: {
- lineStyle: {
- type: 'solid',
- color: '#37a2da', //左边线的颜色
- width: '1' //坐标线的宽度
- }
- },
- splitLine: {
- show: false
- }
- },
- yAxis: {
- type: 'value',
- axisLabel: {
- show: true,
- textStyle: {
- color: '#ffffff', //更改坐标轴文字颜色
- fontSize: 14 //更改坐标轴文字大小
- }
- },
- axisLine: {
- lineStyle: {
- type: 'solid',
- color: '#37a2da', //左边线的颜色
- width: '1' //坐标线的宽度
- }
- },
- splitLine: {
- show: true,
- lineStyle: {
- color: ['#37a2da'],
- width: 1,
- type: 'solid'
- }
- }
- },
- series: [{
- name: '打卡',
- type: 'bar',
- stack: '总量',
- label: {
- show: true,
- position: 'insideRight'
- },
- data: yDataList
- },
- {
- name: '未打卡',
- type: 'bar',
- stack: '总量',
- label: {
- show: true,
- position: 'insideRight'
- },
- data: yDataList2
- }
- ]
- };
- if (grid != null && grid != undefined){
- option.grid = grid;
- }
- // 使用刚指定的配置项和数据显示图表。
- myChart.setOption(option);
- window.addEventListener("resize", function () {
- myChart.resize();
- });
- },
- // 折线图,带阴影
- // divId:待显示的div id, data:json对象
- initLineWithShade: function (divId, data, grid) {
- var myChart = echarts.init(document.getElementById(divId));
- const xDataList = [];
- const yDataList = [];
- for (var val in data) {
- xDataList.push(val);
- yDataList.push(data[val]);
- }
- var option = {
- color: ['#37a2da'],
- grid:{
- left:"20%",
- right:"10%",
- bottom:"25%",
- top:"10%"
- },
- xAxis: {
- type: 'category',
- boundaryGap: false,
- data: xDataList,
- axisLabel: {
- show: true,
- textStyle: {
- color: '#ffffff', //更改坐标轴文字颜色
- fontSize: 14 //更改坐标轴文字大小
- },
- interval:0,
- rotate:30
- },
- axisLine: {
- lineStyle: {
- type: 'solid',
- color: '#37a2da', //左边线的颜色
- width: '1' //坐标线的宽度
- }
- },
- splitLine: {
- show: false
- }
- },
- yAxis: {
- type: 'value',
- axisLabel: {
- show: true,
- textStyle: {
- color: '#ffffff', //更改坐标轴文字颜色
- fontSize: 14 //更改坐标轴文字大小
- }
- },
- axisLine: {
- lineStyle: {
- type: 'solid',
- color: '#37a2da', //左边线的颜色
- width: '1' //坐标线的宽度
- }
- },
- splitLine: {
- show: true,
- lineStyle: {
- color: ['#37a2da'],
- width: 1,
- type: 'solid'
- }
- }
- },
- series: [{
- data: yDataList,
- type: 'line',
- areaStyle: {},
- itemStyle: {
- normal: {
- label: {
- show: true,
- position: 'top',
- textStyle: {
- color: '#ffffff'
- }
- }
- }
- }
- }]
- };
- if (grid != null && grid != undefined){
- option.grid = grid;
- }
- // 使用刚指定的配置项和数据显示图表。
- myChart.setOption(option);
- window.addEventListener("resize", function () {
- myChart.resize();
- });
- },
- // 通用的饼图
- // divId:待显示的div id, data:json对象
- initCommonPie: function (divId, data) {
- var myChart = echarts.init(document.getElementById(divId));
- const chartData = [];
- var total = 0;
- for (var val in data) {
- total += data[val] * 1;
- }
- for (var val in data) {
- //const desc = val + " " + data[val] + " " + (data[val] * 1 / total * 100).toFixed(1) + "%";
- const desc = val + " " + (data[val] * 1 / total * 100).toFixed(1) + "%";
- chartData.push({
- value: data[val],
- name: desc
- });
- }
- var option = {
- color: ['#37a2da', '#ffd85c', '#67e0e3', '#ff9f7f'],
- title: {
- text: '',
- subtext: '',
- left: 'center'
- },
- tooltip: {
- trigger: 'item',
- formatter: '{a} <br/>{b} : {c} ({d}%)'
- },
- series: [{
- name: '',
- type: 'pie',
- radius: '100%',
- center: ['50%', '50%'],
- data: chartData,
- label: {
- normal: {
- show: true,
- position: 'inner'
- }
- },
- emphasis: {
- itemStyle: {
- shadowBlur: 0,
- shadowOffsetX: 0,
- shadowColor: 'rgba(0, 0, 0, 0.5)'
- }
- }
- }]
- };
- // 使用刚指定的配置项和数据显示图表。
- myChart.setOption(option);
- window.addEventListener("resize", function () {
- myChart.resize();
- });
- },
- // 仪表盘
- // divId:待显示的div id, data:json对象:name,value
- initCommonPanel: function (divId, data) {
- var myChart = echarts.init(document.getElementById(divId));
- const dataList = [];
- dataList.push(data);
- var option = {
- tooltip: {
- formatter: '{a} <br/>{b} : {c}%'
- },
- series: [{
- radius:"100%",
- name: '',
- type: 'gauge',
- detail: {
- formatter: '{value}%'
- },
- data: dataList,
- title: {
- textStyle: {
- color: '#ffffff', //更改坐标轴文字颜色
- fontSize: 12 //更改坐标轴文字大小
- }
- }
- }]
- };
- // 使用刚指定的配置项和数据显示图表。
- myChart.setOption(option);
- window.addEventListener("resize", function () {
- myChart.resize();
- });
- },
- // 柱状图和折线图对吧
- // divId:待显示的div id, data:json数组:label-x坐标名称,label1-y1名称,label2-y2名称,sum1-y1数量,sum2-y2数量
- initBarAndLine: function (divId, data, grid) {
- var myChart = echarts.init(document.getElementById(divId));
- if (data.length == 0)
- return;
- const yLabel1 = data[0].label1;
- const yLabel2 = data[0].label2;
- const xDataList = [];
- const yDataList1 = [];
- const yDataList2 = [];
- $.each(data, function (index, item) {
- xDataList.push(item.label);
- yDataList1.push(item.sum1);
- yDataList2.push(item.sum2);
- });
- var option = {
- color: ['#ff9f7f', '#ffd85c'],
- grid:{
- left:"20%",
- right:"10%",
- bottom:"25%",
- top:"10%"
- },
- tooltip: {
- trigger: 'axis'
- },
- legend: {
- data: [{
- name: yLabel1,
- textStyle: {
- color: '#ffffff'
- }
- },
- {
- name: yLabel2,
- textStyle: {
- color: '#ffffff'
- }
- }
- ]
- },
- xAxis: {
- type: 'category',
- boundaryGap: false,
- data: xDataList,
- axisLabel: {
- show: true,
- textStyle: {
- color: '#ffffff', //更改坐标轴文字颜色
- fontSize: 14 //更改坐标轴文字大小
- },
- interval:0,
- rotate:30
- },
- axisLine: {
- lineStyle: {
- type: 'solid',
- color: '#37a2da', //左边线的颜色
- width: '1' //坐标线的宽度
- }
- },
- splitLine: {
- show: false
- }
- },
- yAxis: {
- type: 'value',
- axisLabel: {
- show: true,
- textStyle: {
- color: '#ffffff', //更改坐标轴文字颜色
- fontSize: 14 //更改坐标轴文字大小
- }
- },
- axisLine: {
- lineStyle: {
- type: 'solid',
- color: '#37a2da', //左边线的颜色
- width: '1' //坐标线的宽度
- }
- },
- splitLine: {
- show: true,
- lineStyle: {
- color: ['#37a2da'],
- width: 1,
- type: 'solid'
- }
- }
- },
- series: [{
- name: yLabel1,
- type: 'line',
- stack: '总量',
- label: {
- show: true
- },
- data: yDataList1
- },
- {
- name: yLabel2,
- type: 'bar',
- stack: '总量',
- label: {
- show: true
- },
- data: yDataList2
- }
- ]
- };
- if (grid != null && grid != undefined){
- option.grid = grid;
- }
- // 使用刚指定的配置项和数据显示图表。
- myChart.setOption(option);
- window.addEventListener("resize", function () {
- myChart.resize();
- });
- },
- }
|