|
@@ -20,7 +20,7 @@
|
|
// let _this = this
|
|
// let _this = this
|
|
// var t1=setTimeout(function() {
|
|
// var t1=setTimeout(function() {
|
|
// _this.option.series = [{
|
|
// _this.option.series = [{
|
|
- // data: [23, 84, 101, 74, 87]
|
|
|
|
|
|
+ // data: [23, 84, 101, 74, 87]
|
|
// },
|
|
// },
|
|
// {
|
|
// {
|
|
// data: [13, 54, 71, 24, 57]
|
|
// data: [13, 54, 71, 24, 57]
|
|
@@ -30,182 +30,195 @@
|
|
// }, 1000);
|
|
// }, 1000);
|
|
var chartDom = document.getElementById('main2');
|
|
var chartDom = document.getElementById('main2');
|
|
var myChart = this.$echarts.init(chartDom);
|
|
var myChart = this.$echarts.init(chartDom);
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
- let option = {
|
|
|
|
- // backgroundColor: '#031d33',
|
|
|
|
- legend: {
|
|
|
|
- top: "5",
|
|
|
|
- x: "center",
|
|
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ let option = {
|
|
|
|
+ // backgroundColor: '#031d33',
|
|
|
|
+ legend: {
|
|
|
|
+ top: "5",
|
|
|
|
+ x: "center",
|
|
|
|
+ textStyle: {
|
|
|
|
+ fontSize: 12,
|
|
|
|
+ color: "rgba(255,225,255,1)"
|
|
|
|
+ },
|
|
|
|
+ icon: "path://M512 881.777778 512 881.777778C716.222629 881.777778 881.777778 716.222629 881.777778 512 881.777778 307.777371 716.222629 142.222222 512 142.222222 307.777373 142.222222 142.222222 307.777371 142.222222 512 142.222222 716.222629 307.777373 881.777778 512 881.777778L512 881.777778ZM512 1024 512 1024C229.230208 1024 0 794.769789 0 512 0 229.230211 229.230208 0 512 0 794.769789 0 1024 229.230211 1024 512 1024 794.769789 794.769789 1024 512 1024L512 1024Z",
|
|
|
|
+ itemWidth: 16, // 设置宽度
|
|
|
|
+ itemHeight: 16, // 设置高度、
|
|
|
|
+ itemGap: 24 // 设置间距
|
|
|
|
+ },
|
|
|
|
+ // tooltip: {
|
|
|
|
+ // show: true,
|
|
|
|
+ // trigger: "axis", //axis , item
|
|
|
|
+ // backgroundColor: "RGBA(0, 49, 85, 1)",
|
|
|
|
+ // borderColor: "rgba(0, 151, 251, 1)",
|
|
|
|
+ // borderWidth: 1,
|
|
|
|
+ // borderRadius: 0,
|
|
|
|
+ // axisPointer: {
|
|
|
|
+ // type: 'cross',
|
|
|
|
+ // label: {
|
|
|
|
+ // backgroundColor: '#6a7985'
|
|
|
|
+ // }
|
|
|
|
+ // },
|
|
|
|
+ // textStyle: {
|
|
|
|
+ // color: "#BCE9FC",
|
|
|
|
+ // fontSize: 16,
|
|
|
|
+ // align: "left"
|
|
|
|
+ // }
|
|
|
|
+ // },
|
|
|
|
+ tooltip: {
|
|
|
|
+ trigger: 'axis',
|
|
|
|
+ backgroundColor: "rgba(255,255,255,0.6)",
|
|
|
|
+ borderColor: "rgba(255,255,255,0.6)", //设置边框颜色
|
|
|
|
+ textStyle: {
|
|
|
|
+ color: "rgba(0,0,0,0.8)" //设置文字颜色
|
|
|
|
+ },
|
|
|
|
+ axisPointer: {
|
|
|
|
+ type: 'cross',
|
|
|
|
+ label: {
|
|
|
|
+ backgroundColor: '#6a7985'
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ grid: {
|
|
|
|
+ right: "5%",
|
|
|
|
+ top: "20%",
|
|
|
|
+ left: "5%",
|
|
|
|
+ bottom: "5%",
|
|
|
|
+ containLabel: true
|
|
|
|
+ },
|
|
|
|
+ xAxis: {
|
|
|
|
+ type: "category",
|
|
|
|
+ boundaryGap: true,
|
|
|
|
+ data: ["天牛", "布甲", '黑翅蛾', '美国白蛾', '隐翅虫'],
|
|
|
|
+ axisLabel: {
|
|
|
|
+ //坐标轴刻度标签的相关设置。
|
|
|
|
+ interval: 0, //设置为 1,表示『隔一个标签显示一个标签』
|
|
|
|
+ // margin:15,
|
|
textStyle: {
|
|
textStyle: {
|
|
- fontSize: 12,
|
|
|
|
|
|
+ color: "rgba(255,225,255,1)",
|
|
|
|
+ fontStyle: "normal",
|
|
|
|
+ fontSize: 12
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ axisTick: {
|
|
|
|
+ //坐标轴刻度相关设置。
|
|
|
|
+ show: true
|
|
|
|
+ },
|
|
|
|
+ axisLine: {
|
|
|
|
+ //坐标轴轴线相关设置
|
|
|
|
+ lineStyle: {
|
|
color: "rgba(255,225,255,1)"
|
|
color: "rgba(255,225,255,1)"
|
|
- },
|
|
|
|
- icon: "path://M512 881.777778 512 881.777778C716.222629 881.777778 881.777778 716.222629 881.777778 512 881.777778 307.777371 716.222629 142.222222 512 142.222222 307.777373 142.222222 142.222222 307.777371 142.222222 512 142.222222 716.222629 307.777373 881.777778 512 881.777778L512 881.777778ZM512 1024 512 1024C229.230208 1024 0 794.769789 0 512 0 229.230211 229.230208 0 512 0 794.769789 0 1024 229.230211 1024 512 1024 794.769789 794.769789 1024 512 1024L512 1024Z",
|
|
|
|
- itemWidth: 16, // 设置宽度
|
|
|
|
- itemHeight: 16, // 设置高度、
|
|
|
|
- itemGap: 24 // 设置间距
|
|
|
|
|
|
+ }
|
|
},
|
|
},
|
|
- tooltip: {
|
|
|
|
- show: true,
|
|
|
|
- trigger: "axis", //axis , item
|
|
|
|
- backgroundColor: "RGBA(0, 49, 85, 1)",
|
|
|
|
- borderColor: "rgba(0, 151, 251, 1)",
|
|
|
|
- borderWidth: 1,
|
|
|
|
- borderRadius: 0,
|
|
|
|
- axisPointer: {
|
|
|
|
- type: 'cross',
|
|
|
|
- label: {
|
|
|
|
- backgroundColor: '#6a7985'
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
|
|
+ splitLine: {
|
|
|
|
+ //坐标轴在 grid 区域中的分隔线。
|
|
|
|
+ show: false,
|
|
|
|
+ lineStyle: {
|
|
|
|
+ color: "rgba(77, 128, 254, 0.2)"
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ yAxis: [{
|
|
|
|
+ type: "value",
|
|
|
|
+ splitNumber: 3,
|
|
|
|
+ axisLabel: {
|
|
textStyle: {
|
|
textStyle: {
|
|
- color: "#BCE9FC",
|
|
|
|
- fontSize: 16,
|
|
|
|
- align: "left"
|
|
|
|
|
|
+ color: "rgba(255,225,255,1)",
|
|
|
|
+ fontStyle: "normal",
|
|
|
|
+ fontSize: 12
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ axisLine: {
|
|
|
|
+ show: true,
|
|
|
|
+ lineStyle: {
|
|
|
|
+ color: "rgba(255,225,255,1)"
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- grid: {
|
|
|
|
- right: "5%",
|
|
|
|
- top: "20%",
|
|
|
|
- left: "5%",
|
|
|
|
- bottom: "5%",
|
|
|
|
- containLabel: true
|
|
|
|
|
|
+ axisTick: {
|
|
|
|
+ show: true
|
|
},
|
|
},
|
|
- xAxis: {
|
|
|
|
- type: "category",
|
|
|
|
- boundaryGap: true,
|
|
|
|
- data: ["天牛", "布甲", '黑翅蛾', '美国白蛾', '隐翅虫'],
|
|
|
|
- axisLabel: {
|
|
|
|
- //坐标轴刻度标签的相关设置。
|
|
|
|
- interval: 0, //设置为 1,表示『隔一个标签显示一个标签』
|
|
|
|
- // margin:15,
|
|
|
|
- textStyle: {
|
|
|
|
- color: "rgba(255,225,255,1)",
|
|
|
|
- fontStyle: "normal",
|
|
|
|
- fontSize: 12
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- axisTick: {
|
|
|
|
- //坐标轴刻度相关设置。
|
|
|
|
- show: true
|
|
|
|
- },
|
|
|
|
- axisLine: {
|
|
|
|
- //坐标轴轴线相关设置
|
|
|
|
- lineStyle: {
|
|
|
|
- color: "rgba(255,225,255,1)"
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- splitLine: {
|
|
|
|
- //坐标轴在 grid 区域中的分隔线。
|
|
|
|
- show: false,
|
|
|
|
- lineStyle: {
|
|
|
|
- color: "rgba(77, 128, 254, 0.2)"
|
|
|
|
- }
|
|
|
|
|
|
+ splitLine: {
|
|
|
|
+ show: false,
|
|
|
|
+ lineStyle: {
|
|
|
|
+ color: "rgba(77, 128, 254, 0.2)"
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }],
|
|
|
|
+ series: [{
|
|
|
|
+ name: '上月',
|
|
|
|
+ type: "pictorialBar",
|
|
|
|
+ barWidth: "60%",
|
|
|
|
+ stack: "总量",
|
|
|
|
+ label: {
|
|
|
|
+ normal: {
|
|
|
|
+ show: false
|
|
}
|
|
}
|
|
},
|
|
},
|
|
- yAxis: [{
|
|
|
|
- type: "value",
|
|
|
|
- splitNumber: 3,
|
|
|
|
- axisLabel: {
|
|
|
|
- textStyle: {
|
|
|
|
- color: "rgba(255,225,255,1)",
|
|
|
|
- fontStyle: "normal",
|
|
|
|
- fontSize: 12
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- axisLine: {
|
|
|
|
- show: true,
|
|
|
|
- lineStyle: {
|
|
|
|
- color: "rgba(255,225,255,1)"
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- axisTick: {
|
|
|
|
- show: true
|
|
|
|
- },
|
|
|
|
- splitLine: {
|
|
|
|
- show: false,
|
|
|
|
- lineStyle: {
|
|
|
|
- color: "rgba(77, 128, 254, 0.2)"
|
|
|
|
- }
|
|
|
|
|
|
+ itemStyle: {
|
|
|
|
+ normal: {
|
|
|
|
+ color: {
|
|
|
|
+ type: "linear",
|
|
|
|
+ x: 0,
|
|
|
|
+ y: 0,
|
|
|
|
+ x2: 0,
|
|
|
|
+ y2: 1,
|
|
|
|
+ colorStops: [{
|
|
|
|
+ offset: 0,
|
|
|
|
+ color: "rgba(85, 255, 0, 1.0)" // 0% 处的颜色
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ offset: 1,
|
|
|
|
+ color: "rgba(85, 255, 127, 0.2)" // 100% 处的颜色
|
|
|
|
+ }
|
|
|
|
+ ],
|
|
|
|
+ globalCoord: false // 缺省为 false
|
|
|
|
+ } //渐变颜色
|
|
}
|
|
}
|
|
- }],
|
|
|
|
- series: [{
|
|
|
|
- name: '上月',
|
|
|
|
- type: "pictorialBar",
|
|
|
|
- barWidth: "60%",
|
|
|
|
- stack: "总量",
|
|
|
|
- label: {
|
|
|
|
- normal: {
|
|
|
|
- show: false
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- itemStyle: {
|
|
|
|
- normal: {
|
|
|
|
- color: {
|
|
|
|
- type: "linear",
|
|
|
|
- x: 0,
|
|
|
|
- y: 0,
|
|
|
|
- x2: 0,
|
|
|
|
- y2: 1,
|
|
|
|
- colorStops: [{
|
|
|
|
- offset: 0,
|
|
|
|
- color: "rgba(85, 255, 0, 1.0)" // 0% 处的颜色
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- offset: 1,
|
|
|
|
- color: "rgba(85, 170, 255, 0.2)" // 100% 处的颜色
|
|
|
|
- }
|
|
|
|
- ],
|
|
|
|
- globalCoord: false // 缺省为 false
|
|
|
|
- } //渐变颜色
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- symbol: "path://M12.000,-0.000 C12.000,-0.000 16.074,60.121 22.731,60.121 C26.173,60.121 -3.234,60.121 0.511,60.121 C7.072,60.121 12.000,-0.000 12.000,-0.000 Z",
|
|
|
|
|
|
+ },
|
|
|
|
+ symbol: "path://M12.000,-0.000 C12.000,-0.000 16.074,60.121 22.731,60.121 C26.173,60.121 -3.234,60.121 0.511,60.121 C7.072,60.121 12.000,-0.000 12.000,-0.000 Z",
|
|
|
|
|
|
- data: [23, 84, 101, 74, 87]
|
|
|
|
- }, {
|
|
|
|
- name: '本月',
|
|
|
|
- type: "pictorialBar",
|
|
|
|
- barWidth: "60%",
|
|
|
|
- stack: "总量",
|
|
|
|
- label: {
|
|
|
|
- normal: {
|
|
|
|
- show: false
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- itemStyle: {
|
|
|
|
- normal: {
|
|
|
|
- color: {
|
|
|
|
- type: "linear",
|
|
|
|
- x: 0,
|
|
|
|
- y: 0,
|
|
|
|
- x2: 0,
|
|
|
|
- y2: 1,
|
|
|
|
- colorStops: [{
|
|
|
|
- offset: 0,
|
|
|
|
- color: "rgba(255, 255, 0, 1.0)" // 0% 处的颜色
|
|
|
|
- },
|
|
|
|
- {
|
|
|
|
- offset: 1,
|
|
|
|
- color: "rgba(255, 85, 255, 0.2)" // 100% 处的颜色
|
|
|
|
- }
|
|
|
|
- ],
|
|
|
|
- globalCoord: false // 缺省为 false
|
|
|
|
- } //渐变颜色
|
|
|
|
- }
|
|
|
|
- },
|
|
|
|
- symbol: "path://M12.000,-0.000 C12.000,-0.000 16.074,60.121 22.731,60.121 C26.173,60.121 -3.234,60.121 0.511,60.121 C7.072,60.121 12.000,-0.000 12.000,-0.000 Z",
|
|
|
|
|
|
+ data: [33, 114, 177, 108, 123]
|
|
|
|
+ }, {
|
|
|
|
+ name: '本月',
|
|
|
|
+ type: "pictorialBar",
|
|
|
|
+ barWidth: "60%",
|
|
|
|
+ stack: "总量",
|
|
|
|
+ label: {
|
|
|
|
+ normal: {
|
|
|
|
+ show: false
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ itemStyle: {
|
|
|
|
+ normal: {
|
|
|
|
+ color: {
|
|
|
|
+ type: "linear",
|
|
|
|
+ x: 0,
|
|
|
|
+ y: 0,
|
|
|
|
+ x2: 0,
|
|
|
|
+ y2: 1,
|
|
|
|
+ colorStops: [{
|
|
|
|
+ offset: 0,
|
|
|
|
+ color: "rgba(255, 0, 0, 1.0)" // 0% 处的颜色
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ offset: 1,
|
|
|
|
+ color: "rgba(255, 0, 127, 0.2)" // 100% 处的颜色
|
|
|
|
+ }
|
|
|
|
+ ],
|
|
|
|
+ globalCoord: false // 缺省为 false
|
|
|
|
+ } //渐变颜色
|
|
|
|
+ }
|
|
|
|
+ },
|
|
|
|
+ symbol: "path://M12.000,-0.000 C12.000,-0.000 16.074,60.121 22.731,60.121 C26.173,60.121 -3.234,60.121 0.511,60.121 C7.072,60.121 12.000,-0.000 12.000,-0.000 Z",
|
|
|
|
|
|
- data: [13, 54, 71, 24, 57]
|
|
|
|
- }],
|
|
|
|
- };
|
|
|
|
- myChart.setOption(option);
|
|
|
|
- },
|
|
|
|
-
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
|
|
+ data: [13, 54, 71, 69, 77]
|
|
|
|
+ }],
|
|
|
|
+ };
|
|
|
|
+ myChart.setOption(option);
|
|
|
|
+ },
|
|
|
|
+
|
|
|
|
+ }
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style scoped>
|
|
<style scoped>
|