| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247 |
- //part 1 //投诉类别月统计 对接完毕
- part_2();
- //
- function part_1() {
- var part_1 = echarts.init(document.getElementById('part_1'));
- part_1.setOption({
- title: {
- text: ''
- },
- tooltip: {
- trigger: 'axis'
- },
- legend: {
- x: 'center',
- data: ['']
- },
- textStyle: {
- fontSize: 36
- },
- radar: [{
- indicator: [{
- text: '咨询',
- max: 9999
- },
- {
- text: '投诉',
- max: 9999
- },
- {
- text: '求助',
- max: 9999
- },
- {
- text: '表扬',
- max: 9999
- },
- {
- text: '建议',
- max: 9999
- },
- {
- text: '其它',
- max: 9999
- }
- ],
- splitArea: {
- areaStyle: {
- color: ['rgba(114, 172, 209, 0.1)',
- 'rgba(114, 172, 209, 0.2)', 'rgba(114, 172, 209, 0.3)',
- 'rgba(114, 172, 209, 0.4)', 'rgba(114, 172, 209, 0.5)',
- 'rgba(114, 172, 209, 0.6)'
- ],
- shadowColor: 'rgba(0, 0, 0, 0.3)',
- shadowBlur: 10
- }
- },
- center: ['50%', '50%'],
- radius: 300
- }],
- series: [{
- type: 'radar',
- tooltip: {
- trigger: 'item'
- },
- itemStyle: {
- normal: {
- areaStyle: {
- type: 'default'
- }
- }
- },
- data: [{
- value: [2032, 604, 16, 83, 87, 25],
- name: '业务类型',
- areaStyle: {
- normal: {
- color: 'rgba(255, 255, 255, 0.0)'
- }
- }
- }]
- }]
- });
- }
- function part_2() {
- var part_2 = echarts.init(document.getElementById('part_2'));
- part_2.setOption({
- title: {
- text: ''
- },
- tooltip: {
- trigger: 'axis'
- },
- legend: {
- x: 'center',
- data: ['']
- },
- textStyle: {
- fontSize: 36
- },
- radar: [{
- indicator: [{
- text: '咨询',
- max: 99999
- },
- {
- text: '投诉',
- max: 99999
- },
- {
- text: '求助',
- max: 99999
- },
- {
- text: '表扬',
- max: 99999
- },
- {
- text: '建议',
- max: 99999
- },
- {
- text: '其它',
- max: 99999
- }
- ],
- splitArea: {
- areaStyle: {
- color: ['rgba(114, 172, 209, 0.1)',
- 'rgba(114, 172, 209, 0.2)', 'rgba(114, 172, 209, 0.3)',
- 'rgba(114, 172, 209, 0.4)', 'rgba(114, 172, 209, 0.5)',
- 'rgba(114, 172, 209, 0.6)'
- ],
- shadowColor: 'rgba(0, 0, 0, 0.3)',
- shadowBlur: 10
- }
- },
- center: ['50%', '50%'],
- radius: 300
- }],
- series: [{
- type: 'radar',
- tooltip: {
- trigger: 'item'
- },
- itemStyle: {
- normal: {
- areaStyle: {
- type: 'default'
- }
- }
- },
- data: [{
- value: [65926, 8611, 428, 1532, 1776, 736],
- name: '业务类型',
- areaStyle: {
- normal: {
- color: 'rgba(255, 255, 255, 0.0)'
- }
- }
- }]
- }]
- });
- }
- function part_3() {
- var part_3 = echarts.init(document.getElementById('part_3'));
- part_3.setOption({
- title: {
- text: ''
- },
- tooltip: {
- trigger: 'axis'
- },
- legend: {
- x: 'center',
- data: ['']
- },
- textStyle: {
- fontSize: 36
- },
- radar: [{
- indicator: [{
- text: '咨询',
- max: 999999
- },
- {
- text: '投诉',
- max: 999999
- },
- {
- text: '求助',
- max: 999999
- },
- {
- text: '表扬',
- max: 999999
- },
- {
- text: '建议',
- max: 999999
- },
- {
- text: '其它',
- max: 999999
- }
- ],
- splitArea: {
- areaStyle: {
- color: ['rgba(114, 172, 209, 0.1)',
- 'rgba(114, 172, 209, 0.2)', 'rgba(114, 172, 209, 0.3)',
- 'rgba(114, 172, 209, 0.4)', 'rgba(114, 172, 209, 0.5)',
- 'rgba(114, 172, 209, 0.6)'
- ],
- shadowColor: 'rgba(0, 0, 0, 0.3)',
- shadowBlur: 10
- }
- },
- center: ['50%', '50%'],
- radius: 300
- }],
- series: [{
- type: 'radar',
- tooltip: {
- trigger: 'item'
- },
- itemStyle: {
- normal: {
- areaStyle: {
- type: 'default'
- }
- }
- },
- data: [{
- value: [725186, 94721, 931, 16852, 27236, 5632],
- name: '业务类型',
- areaStyle: {
- normal: {
- color: 'rgba(255, 255, 255, 0.0)'
- }
- }
- }]
- }]
- });
- }
|