| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928 |
- let app = new Vue({
- el: '#app',
- data () {
- return {
- time: '',
- timer: '',
- }
- },
- created () {
- this.time = formatDate()
- this.timer = setInterval(() => {
- this.time = formatDate()
- })
- },
- beforeDestroy () {
- if (this.timer) {
- clearInterval(this.timer);
- }
- },
- mounted () {
- setTimeout(() => {
- this.initChart1()
- this.initChart2()
- this.initChart3()
- this.initChart4()
- this.initChart5()
- })
- },
- methods: {
- initChart1 () {
- let myChart = echarts.init(this.$refs['echart1'])
- let option = {
- tooltip: {
- formatter: data => {
- return `${data[0].name}<br /><span style="display:inline-block;border-radius:50%; width:7px;height:7px;background-color:${data[0].color.colorStops[0].color}"></span> ${data[0].seriesName}:${data[0].value}亿 <br/><span style="display:inline-block;border-radius:50%; width:7px;height:7px;background-color:${data[1].color.colorStops[0].color}"></span> ${data[1].seriesName}:${data[1].value}亿`
- },
- trigger: 'axis',
- // axisPointer: {
- // type: 'cross',
- // },
- },
- grid: {
- top: '16%',
- right:'3%',
- left: '5%',
- bottom: '15%',
- },
- legend: {
- data: ["预算额", "已签合同额",'产值认定额','结算额','结算额'],
- x:'center',
- y:'10px',
- textStyle: {
- color: 'rgba(250,250,250,0.6)',
- },
- },
- xAxis: {
- data: title.map(item=>item.name),
- axisLine: {
- show: true, //隐藏X轴轴线
- lineStyle: {
- color: '#005094',
- width: 1,
- },
- },
- axisTick: {
- show: false, //隐藏X轴刻度
- },
- axisLabel: {
- show: true,
- rotate: 40,
- textStyle: {
- color: '#fff',//'rgba(255,255,255,0.6)', //X轴文字颜色
- },
- },
- },
- yAxis: [
- {
- type: 'value',
- name: '亿元',
- nameTextStyle: {
- color: 'rgba(255,255,255,0.6)',
- },
- splitLine: {
- show: true,
- lineStyle: {
- color: '#68b4dd66',
- type: 'dashed',
- },
- },
- axisLine: {
- show: true,
- lineStyle: {
- color: '#3D7495',
- },
- },
- axisLabel: {
- show: true,
- textStyle: {
- color: 'rgba(250,250,250,0.6)',
- },
- },
- },
- ],
- series: [
- {
- name: '预算额',
- type: 'bar',
- barWidth: 5,
- itemStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- {
- offset: 0,
- color: '#71D5FF',
- },
- {
- offset: 1,
- color: '#082550',
- },
- ]),
- },
- },
- data: title.map(item=>item.value),
- },
- {
- name: '已签合同额',
- type: 'bar',
- barWidth: 5,
- itemStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- {
- offset: 0,
- color: '#4D6FF6',
- },
- {
- offset: 1,
- color: '#082550',
- },
- ]),
- },
- },
- data: title.map(item=>item.value2),
- },
- {
- name: '产值认定额',
- type: 'bar',
- barWidth: 5,
- itemStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- {
- offset: 0,
- color: '#877CFC',
- },
- {
- offset: 1,
- color: '#082550',
- },
- ]),
- },
- },
- data: title.map(item=>item.value2),
- },
- {
- name: '结算额',
- type: 'bar',
- barWidth: 5,
- itemStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- {
- offset: 0,
- color: '#52BF80',
- },
- {
- offset: 1,
- color: '#082550',
- },
- ]),
- },
- },
- data: title.map(item=>item.value2),
- },
- {
- name: '付款额',
- type: 'bar',
- barWidth: 5,
- itemStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- {
- offset: 0,
- color: '#CADD62',
- },
- {
- offset: 1,
- color: '#082550',
- },
- ]),
- },
- },
- data: title.map(item=>item.value2),
- },
- ],
- }
- myChart.setOption(option)
- tools.loopShowTooltip(myChart, option, {
- nterval: 2000,
- loopSeries: true,
- })
- },
- initChart2 () {
- const dataBJ = [
- [1, 55, 9, 56, 0.46, 18, 6, '良'],
- [2, 25, 11, 21, 0.65, 34, 9, '优'],
- [3, 56, 7, 63, 0.3, 14, 5, '良'],
- [4, 33, 7, 29, 0.33, 16, 6, '优'],
- [5, 42, 24, 44, 0.76, 40, 16, '优'],
- [6, 82, 58, 90, 1.77, 68, 33, '良'],
- [7, 74, 49, 77, 1.46, 48, 27, '良'],
- [8, 78, 55, 80, 1.29, 59, 29, '良'],
- [9, 267, 216, 280, 4.8, 108, 64, '重度污染'],
- [10, 185, 127, 216, 2.52, 61, 27, '中度污染'],
- [11, 39, 19, 38, 0.57, 31, 15, '优'],
- [12, 41, 11, 40, 0.43, 21, 7, '优'],
- [13, 64, 38, 74, 1.04, 46, 22, '良'],
- [14, 108, 79, 120, 1.7, 75, 41, '轻度污染'],
- [15, 108, 63, 116, 1.48, 44, 26, '轻度污染'],
- [16, 33, 6, 29, 0.34, 13, 5, '优'],
- [17, 94, 66, 110, 1.54, 62, 31, '良'],
- [18, 186, 142, 192, 3.88, 93, 79, '中度污染'],
- [19, 57, 31, 54, 0.96, 32, 14, '良'],
- [20, 22, 8, 17, 0.48, 23, 10, '优'],
- [21, 39, 15, 36, 0.61, 29, 13, '优'],
- [22, 94, 69, 114, 2.08, 73, 39, '良'],
- [23, 99, 73, 110, 2.43, 76, 48, '良'],
- [24, 31, 12, 30, 0.5, 32, 16, '优'],
- [25, 42, 27, 43, 1, 53, 22, '优'],
- [26, 154, 117, 157, 3.05, 92, 58, '中度污染'],
- [27, 234, 185, 230, 4.09, 123, 69, '重度污染'],
- [28, 160, 120, 186, 2.77, 91, 50, '中度污染'],
- [29, 134, 96, 165, 2.76, 83, 41, '轻度污染'],
- [30, 52, 24, 60, 1.03, 50, 21, '良'],
- [31, 46, 5, 49, 0.28, 10, 6, '优']
- ];
- const dataGZ = [
- [1, 26, 37, 27, 1.163, 27, 13, '优'],
- [2, 85, 62, 71, 1.195, 60, 8, '良'],
- [3, 78, 38, 74, 1.363, 37, 7, '良'],
- [4, 21, 21, 36, 0.634, 40, 9, '优'],
- [5, 41, 42, 46, 0.915, 81, 13, '优'],
- [6, 56, 52, 69, 1.067, 92, 16, '良'],
- [7, 64, 30, 28, 0.924, 51, 2, '良'],
- [8, 55, 48, 74, 1.236, 75, 26, '良'],
- [9, 76, 85, 113, 1.237, 114, 27, '良'],
- [10, 91, 81, 104, 1.041, 56, 40, '良'],
- [11, 84, 39, 60, 0.964, 25, 11, '良'],
- [12, 64, 51, 101, 0.862, 58, 23, '良'],
- [13, 70, 69, 120, 1.198, 65, 36, '良'],
- [14, 77, 105, 178, 2.549, 64, 16, '良'],
- [15, 109, 68, 87, 0.996, 74, 29, '轻度污染'],
- [16, 73, 68, 97, 0.905, 51, 34, '良'],
- [17, 54, 27, 47, 0.592, 53, 12, '良'],
- [18, 51, 61, 97, 0.811, 65, 19, '良'],
- [19, 91, 71, 121, 1.374, 43, 18, '良'],
- [20, 73, 102, 182, 2.787, 44, 19, '良'],
- [21, 73, 50, 76, 0.717, 31, 20, '良'],
- [22, 84, 94, 140, 2.238, 68, 18, '良'],
- [23, 93, 77, 104, 1.165, 53, 7, '良'],
- [24, 99, 130, 227, 3.97, 55, 15, '良'],
- [25, 146, 84, 139, 1.094, 40, 17, '轻度污染'],
- [26, 113, 108, 137, 1.481, 48, 15, '轻度污染'],
- [27, 81, 48, 62, 1.619, 26, 3, '良'],
- [28, 56, 48, 68, 1.336, 37, 9, '良'],
- [29, 82, 92, 174, 3.29, 0, 13, '良'],
- [30, 106, 116, 188, 3.628, 101, 16, '轻度污染'],
- [31, 118, 50, 0, 1.383, 76, 11, '轻度污染']
- ];
- const dataSH = [
- [1, 91, 45, 125, 0.82, 34, 23, '良'],
- [2, 65, 27, 78, 0.86, 45, 29, '良'],
- [3, 83, 60, 84, 1.09, 73, 27, '良'],
- [4, 109, 81, 121, 1.28, 68, 51, '轻度污染'],
- [5, 106, 77, 114, 1.07, 55, 51, '轻度污染'],
- [6, 109, 81, 121, 1.28, 68, 51, '轻度污染'],
- [7, 106, 77, 114, 1.07, 55, 51, '轻度污染'],
- [8, 89, 65, 78, 0.86, 51, 26, '良'],
- [9, 53, 33, 47, 0.64, 50, 17, '良'],
- [10, 80, 55, 80, 1.01, 75, 24, '良'],
- [11, 117, 81, 124, 1.03, 45, 24, '轻度污染'],
- [12, 99, 71, 142, 1.1, 62, 42, '良'],
- [13, 95, 69, 130, 1.28, 74, 50, '良'],
- [14, 116, 87, 131, 1.47, 84, 40, '轻度污染'],
- [15, 108, 80, 121, 1.3, 85, 37, '轻度污染'],
- [16, 134, 83, 167, 1.16, 57, 43, '轻度污染'],
- [17, 79, 43, 107, 1.05, 59, 37, '良'],
- [18, 71, 46, 89, 0.86, 64, 25, '良'],
- [19, 97, 71, 113, 1.17, 88, 31, '良'],
- [20, 84, 57, 91, 0.85, 55, 31, '良'],
- [21, 87, 63, 101, 0.9, 56, 41, '良'],
- [22, 104, 77, 119, 1.09, 73, 48, '轻度污染'],
- [23, 87, 62, 100, 1, 72, 28, '良'],
- [24, 168, 128, 172, 1.49, 97, 56, '中度污染'],
- [25, 65, 45, 51, 0.74, 39, 17, '良'],
- [26, 39, 24, 38, 0.61, 47, 17, '优'],
- [27, 39, 24, 39, 0.59, 50, 19, '优'],
- [28, 93, 68, 96, 1.05, 79, 29, '良'],
- [29, 188, 143, 197, 1.66, 99, 51, '中度污染'],
- [30, 174, 131, 174, 1.55, 108, 50, '中度污染'],
- [31, 187, 143, 201, 1.39, 89, 53, '中度污染']
- ];
- const itemStyle = {
- // opacity: 0.8,
- shadowBlur: 10,
- shadowOffsetX: 0,
- shadowOffsetY: 0,
- shadowColor: 'rgba(0,0,0,0.3)'
- };
- let myChart = echarts.init(this.$refs['echart2'])
- let option = {
- color: ['#80F1BE', '#fec42c', '#dd4444'],
- title: {
- textStyle: {
- color: '#69C0FF',
- fontSize: 16,
- fontWeight: 500
- },
- top: '10',
- left: '10'
- },
- legend: {
- top: 10,
- data: ['正偏差', '容差', '负偏差'],
- textStyle: {
- fontSize: 12,
- color:'#fff'
- }
- },
- textStyle: {
- color: '#fff',
- },
- tooltip: {
- show:false,
- trigger: "axis",
- formatter: function (params) {
- var tip = params[0].axisValue + '<br/>' + params[0].marker + params[0].data[1] + ':' + params[0].data[2] + '个,' + params[0].data[3] + '亿元' + '<br/>' + params[1].marker + params[1].data[1] + ':' + params[1].data[2] + '个,' + params[1].data[3] + '亿元';
- return tip
- },
- axisPointer: {
- lineStyle: {
- type: 'dashed',
- width: 2,
- color: 'rgba(255,255,255,0.6)'
- },
- animation: true
- }
- },
- grid: {
- top: '25%',
- right: '5%',
- left: '6%',
- bottom: '15%',
- },
- yAxis: {
- name:'亿元',
- // data: ['备案', '特别监管'],
- splitLine: {
- show: true,
- lineStyle: {
- color: '#68b4dd66',
- type: 'dashed',
- },
- },
- axisLine: {
- show: false
- },
- axisLabel: {
- show: true,
- formatter: '{value}',
- textStyle: {
- color: 'rgba(250,250,250,0.6)',
- },
- },
- nameTextStyle: {
- color: '#ebf8ac',
- fontSize: 16,
- },
- },
- xAxis: {
- // data: ['项目储备', '项目立项', '可研论证', '投资决策'],
- axisLine: {
- show: true, //隐藏X轴轴线
- lineStyle: {
- color: '#005094',
- width: 1,
- },
- },
- axisTick: {
- show: false, //隐藏X轴刻度
- },
- axisLabel: {
- show: true,
- textStyle: {
- color: 'rgba(255,255,255,0.6)', //X轴文字颜色
- fontSize: 12,
- },
- },
- },
- series: [
- {
- name: '正偏差',
- type: 'scatter',
- itemStyle: itemStyle,
- data: dataBJ,
- },
- {
- name: '容差',
- type: 'scatter',
- itemStyle: itemStyle,
- data: dataSH
- },
- {
- name: '负偏差',
- type: 'scatter',
- itemStyle: itemStyle,
- data: dataGZ
- }
- // {
- // name: '特别监管',
- // type: 'scatter',
- // symbol: 'circle',//'circle', 'rect', 'roundRect', 'triangle', 'diamond', 'pin', 'arrow'
- // symbolSize: function (data) {
- // return Math.sqrt(data[2]) * 3;
- // },
- // label: {
- // emphasis: {
- // show: true,
- // formatter: function (param) {
- // return param.data[2];
- // },
- // position: 'top'
- // }
- // },
- // itemStyle: {
- // normal: {
- // color: '#40A9FF'
- // }
- // },
- // data: [
- // ['项目储备', '特别监管', 14, 12.05],
- // ['项目立项', '特别监管', 2, 1.25],
- // ['可研论证', '特别监管', 10, 32.69],
- // ['投资决策', '特别监管', 15, 28.53],
- // ]
- // },
- // {
- // name: '备案',
- // type: 'scatter',
- // symbol: 'circle',//'circle', 'rect', 'roundRect', 'triangle', 'diamond', 'pin', 'arrow'
- // symbolSize: function (data) {
- // return Math.sqrt(data[2]) * 3;
- // },
- // label: {
- // emphasis: {
- // show: true,
- // formatter: function (param) {
- // return param.data[2];
- // },
- // position: 'top'
- // }
- // },
- // itemStyle: {
- // normal: {
- // color: '#45DAD1'
- // }
- // },
- // data: [
- // ['项目储备', '备案', 27, 23.86],
- // ['项目立项', '备案', 1, 1.05],
- // ['可研论证', '备案', 14, 18.46],
- // ['投资决策', '备案', 40, 38.86],
- // ]
- // },
- ]
- }
- myChart.setOption(option)
- tools.loopShowTooltip(myChart, option, {
- nterval: 2000,
- loopSeries: true,
- })
- },
- initChart3 () {
- let myChart = echarts.init(this.$refs['echart3'])
- let option = {
- tooltip: {
- formatter: data => {
- return `${data[0].name}<br /><span style="display:inline-block;border-radius:50%; width:7px;height:7px;background-color:${data[0].color.colorStops[0].color}"></span> ${data[0].seriesName}:${data[0].value}亿 <br/><span style="display:inline-block;border-radius:50%; width:7px;height:7px;background-color:${data[1].color.colorStops[0].color}"></span> ${data[1].seriesName}:${data[1].value}亿`
- },
- trigger: 'axis',
- // axisPointer: {
- // type: 'cross',
- // },
- },
- grid: {
- top: '16%',
- right:'3%',
- left: '10%',
- bottom: '25%',
- },
- legend: {
- data: ["高风险", "中风险",'低风险'],
- x:'center',
- y:'10px',
- textStyle: {
- color: 'rgba(250,250,250,0.6)',
- },
- },
- xAxis: {
- data: title.map(item=>item.name),
- axisLine: {
- show: true, //隐藏X轴轴线
- lineStyle: {
- color: '#005094',
- width: 1,
- },
- },
- axisTick: {
- show: false, //隐藏X轴刻度
- },
- axisLabel: {
- show: true,
- rotate: 40,
- textStyle: {
- color: '#fff',//'rgba(255,255,255,0.6)', //X轴文字颜色
- },
- },
- },
- yAxis: [
- {
- type: 'value',
- name: '亿元',
- nameTextStyle: {
- color: 'rgba(255,255,255,0.6)',
- },
- splitLine: {
- show: true,
- lineStyle: {
- color: '#68b4dd66',
- type: 'dashed',
- },
- },
- axisLine: {
- show: true,
- lineStyle: {
- color: '#3D7495',
- },
- },
- axisLabel: {
- show: true,
- textStyle: {
- color: 'rgba(250,250,250,0.6)',
- },
- },
- },
- ],
- series: [
- {
- name: '高风险',
- type: 'bar',
- barWidth: 5,
- itemStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- {
- offset: 0,
- color: '#69c0ff',
- },
- {
- offset: 1,
- color: '#082550',
- },
- ]),
- },
- },
- data: echart3.map(item=>item.value),
- },
- {
- name: '中风险',
- type: 'bar',
- barWidth: 5,
- itemStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- {
- offset: 0,
- color: '#957DFF',
- },
- {
- offset: 1,
- color: '#082550',
- },
- ]),
- },
- },
- data: echart3.map(item=>item.value2),
- },
- {
- name: '低风险',
- type: 'bar',
- barWidth: 5,
- itemStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- {
- offset: 0,
- color: '#957DFF',
- },
- {
- offset: 1,
- color: '#082550',
- },
- ]),
- },
- },
- data: echart3.map(item=>item.value3),
- },
- ],
- }
- myChart.setOption(option)
- tools.loopShowTooltip(myChart, option, {
- nterval: 2000,
- loopSeries: true,
- })
- },
- initChart4 () {
- let myChart = echarts.init(this.$refs['echart4'])
- option = {
- title: {
- text: ''
- },
- legend: {
- data: ['类型1', '类型2', '类型3', '类型4', '类型5'],
- textStyle: {
- color: '#9DB9EB',
- },
- },
- splitArea: { // 坐标轴在 grid 区域中的分隔区域,默认不显示。
- show: true,
- areaStyle: { // 分隔区域的样式设置。
- color: ['yellow'],
- // 分隔区域颜色。分隔区域会按数组中颜色的顺序依次循环设置颜色。默认是一个深浅的间隔色。
- }
- },
- radar: {
- // shape: 'circle',
- center: ['50%', '60%'],
- radius: 40,
- indicator: [
- { name: '类型1', max: 100000 },
- { name: '类型2', max: 100000 },
- { name: '类型3', max: 100000 },
- { name: '类型4', max: 100000 },
- { name: '类型5', max: 100000 },
- ],
- axisLine: { // 设置雷达图中间射线的颜色
- lineStyle: {
- color: '#c0c0c0',
- },
- },
- splitLine: { //网格颜色设置
- show: true,
- lineStyle: {
- width: 1,
- color: '#1e83e4',
- },
- },
- splitArea: { //设置图表颜色,show的值为true
- show: false,
- areaStyle: {
- // color:"#c1ddf8", //一般设置方式
- //设置渐变背景色 new echarts.graphic.LinearGradient(a,b,c,d,arr)
- //a ,b,c,d值可为0,1 a:1表示arr中的颜色右到左;c:1 arr中的颜色左到右
- //b:1表示arr中的颜色下到上;d:1表示arr中的颜色上到下
- color: new echarts.graphic.LinearGradient(0, 1, 0, 0, [
- { offset: 0, color: '#c1ddf8' }, // 0% 处的颜色
- { offset: 1, color: '#1e83e4' }// 100% 处的颜色
- ], false)
- }
- }
- },
- series: [
- {
- name: '',
- type: 'radar',
- symbol: 'circle', // 单个数值点的样式,还可以取值'rect','angle'等
- symbolSize: 0, // 数值点的大小
- data: [
- {
- value: echart4[0],
- name: '类型1',
- itemStyle: { //该数值区域样式设置
- normal: {
- color: '#2CC6FF', //背景颜色,还需设置areaStyle
- lineStyle: {
- color: '#2CC6FF', //边框颜色
- },
- },
- },
- label: { //显示value中具体的数值
- normal: {
- show: false,
- textStyle: { //更改数值样式
- color: '#43EDE3'
- }
- },
- },
- areaStyle: { //设置区域背景颜色透明度
- normal: {
- width: 1,
- opacity: 0.8,
- },
- },
- },
- {
- value: echart4[1],
- name: '类型2',
- itemStyle: { //该数值区域样式设置
- normal: {
- color: '#D87AFF', //背景颜色,还需设置areaStyle
- lineStyle: {
- color: '#2CC6FF', //边框颜色
- },
- },
- },
- label: { //显示value中具体的数值
- normal: {
- show: false,
- textStyle: { //更改数值样式
- color: '#43EDE3'
- }
- },
- },
- areaStyle: { //设置区域背景颜色透明度
- normal: {
- width: 1,
- opacity: 0.8,
- },
- },
- }
- ]
- }
- ]
- };
- tools.loopShowTooltip(myChart, option, {
- interval: 2000,
- loopSeries: true,
- });
- myChart.setOption(option)
- },
- initChart5 () {
- let myChart = echarts.init(this.$refs['echart5'])
- let option = {
- tooltip: {
- formatter: data => {
- return `${data[0].name}<br /><span style="display:inline-block;border-radius:50%; width:7px;height:7px;background-color:${data[0].color.colorStops[0].color}"></span> ${data[0].seriesName}:${data[0].value}亿 <br/><span style="display:inline-block;border-radius:50%; width:7px;height:7px;background-color:${data[1].color.colorStops[0].color}"></span> ${data[1].seriesName}:${data[1].value}亿`
- },
- trigger: 'axis',
- // axisPointer: {
- // type: 'cross',
- // },
- },
- grid: {
- top: '16%',
- right:'3%',
- left: '3%',
- bottom: '25%',
- },
- legend: {
- data: ["预算额", "合同额","结算额","支付额"],
- x:'center',
- y:'10px',
- textStyle: {
- color: 'rgba(250,250,250,0.6)',
- },
- },
- xAxis: {
- data: title.map(item=>item.name),
- axisLine: {
- show: true, //隐藏X轴轴线
- lineStyle: {
- color: '#005094',
- width: 1,
- },
- },
- axisTick: {
- show: false, //隐藏X轴刻度
- },
- axisLabel: {
- show: true,
- rotate: 40,
- textStyle: {
- color: '#fff',//'rgba(255,255,255,0.6)', //X轴文字颜色
- },
- },
- },
- yAxis: [
- {
- type: 'value',
- name: '亿元',
- nameTextStyle: {
- color: 'rgba(255,255,255,0.6)',
- },
- splitLine: {
- show: true,
- lineStyle: {
- color: '#68b4dd66',
- type: 'dashed',
- },
- },
- axisLine: {
- show: true,
- lineStyle: {
- color: '#3D7495',
- },
- },
- axisLabel: {
- show: true,
- textStyle: {
- color: 'rgba(250,250,250,0.6)',
- },
- },
- },
- ],
- series: [
- {
- name: '预算额',
- type: 'bar',
- barWidth: 10,
- itemStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- {
- offset: 0,
- color: '#69c0ff',
- },
- {
- offset: 1,
- color: '#082550',
- },
- ]),
- },
- },
- data: title.map(item=>item.value),
- },
- {
- name: '合同额',
- type: 'bar',
- barWidth: 10,
- itemStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- {
- offset: 0,
- color: '#957DFF',
- },
- {
- offset: 1,
- color: '#082550',
- },
- ]),
- },
- },
- data:title.map(item=>item.value2),
- },
- {
- name: '结算额',
- type: 'bar',
- barWidth: 10,
- itemStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- {
- offset: 0,
- color: '#957DFF',
- },
- {
- offset: 1,
- color: '#082550',
- },
- ]),
- },
- },
- data:title.map(item=>item.value3),
- },
- {
- name: '支付额',
- type: 'bar',
- barWidth: 10,
- itemStyle: {
- normal: {
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- {
- offset: 0,
- color: '#957DFF',
- },
- {
- offset: 1,
- color: '#082550',
- },
- ]),
- },
- },
- data:title.map(item=>item.value4),
- },
- ],
- }
- myChart.setOption(option)
- tools.loopShowTooltip(myChart, option, {
- nterval: 2000,
- loopSeries: true,
- })
- },
- },
- })
|