| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- <template>
- <div>
- <Echart
- :options="options"
- id="bottom3Chart"
- height="310px"
- width="450px"
- ></Echart>
- </div>
- </template>
- <script>
- import Echart from '@/common/echart'
- export default {
- data() {
- return {
- options: {},
- // 定义颜色
- colorList: {
- linearYtoG: {
- type: 'linear',
- x: 0,
- y: 0,
- x2: 1,
- y2: 1,
- colorStops: [
- {
- offset: 0,
- color: '#f5b44d'
- },
- {
- offset: 1,
- color: '#28f8de'
- }
- ]
- },
- linearGtoB: {
- type: 'linear',
- x: 0,
- y: 0,
- x2: 1,
- y2: 0,
- colorStops: [
- {
- offset: 0,
- color: '#43dfa2'
- },
- {
- offset: 1,
- color: '#28f8de'
- }
- ]
- },
- linearBtoG: {
- type: 'linear',
- x: 0,
- y: 0,
- x2: 1,
- y2: 0,
- colorStops: [
- {
- offset: 0,
- color: '#1c98e8'
- },
- {
- offset: 1,
- color: '#28f8de'
- }
- ]
- },
- areaBtoG: {
- type: 'linear',
- x: 0,
- y: 0,
- x2: 0,
- y2: 1,
- colorStops: [
- {
- offset: 0,
- color: 'rgba(35,184,210,.2)'
- },
- {
- offset: 1,
- color: 'rgba(35,184,210,0)'
- }
- ]
- }
- }
- }
- },
- components: {
- Echart
- },
- props: {
- cdata: {
- type: Object,
- default: () => ({})
- }
- },
- watch: {
- cdata: {
- handler(newData) {
- this.options = {
- grid: {
- left: '10%',
- bottom: 25,
- },
- xAxis: {
- type: 'category',
- position: 'bottom',
- axisLabel: {
- fontSize: 15
- },
- data: newData.weekCategory
- },
- // 下方Y轴
- yAxis: {
- name: '',
- nameLocation: 'end',
- nameGap: 24,
- nameTextStyle: {
- color: 'rgba(255,255,255,.5)',
- fontSize: 14
- },
- max:newData.maxData,
- splitNumber: 4,
- min: 90,
- //min:newData.minData,
- splitLine: {
- show: true,
- lineStyle: {
- color: '#fff',
- opacity: 0.1
- }
- },
- axisLabel: {
- //color: 'rgba(255,255,255,.8)',
- fontSize: 15,
- formatter: '{value}%',
- }
- },
- series: [
- {
- name: '',
- type: 'line',
- smooth: true,
- symbol: 'emptyCircle',
- symbolSize: 8,
- itemStyle: {
- normal: {
- color: '#fff'
- }
- },
- lineStyle: {
- normal: {
- color: this.colorList.linearBtoG,
- width: 4
- }
- },
- areaStyle: {
- normal: {
- color: this.colorList.areaBtoG
- }
- },
- data: newData.weekLineData,
- label: {
- show: true,
- position: 'top',
- fontSize:14,
- color:'#fff'
- },
- lineSmooth: true,
- markLine: {
- silent: true,
- data: [
- {yAxis: newData.goalData}
- ],
- // precision: 0,
- label: {
- normal: {
- formatter: '目标线: \n {c}',
- color:'#fff'
- },
- },
- lineStyle: {
- normal: {
- fontSize: 16,
- color: 'rgba(248,211,81,.7)'
- }
- }
- },
- tooltip: {
- position: 'top',
- formatter: '{c} %',
- backgroundColor: 'rgba(28,152,232,.2)',
- padding: 6
- }
- },
- {
- name: '占位背景',
- type: 'bar',
- itemStyle: {
- normal: {
- show: true,
- color: '#000',
- opacity: 0
- }
- },
- silent: true,
- barWidth: '50%',
- data: newData.weekMaxData,
- animation: false
- }
- ]
- }
- },
- immediate: true,
- deep: true
- }
- }
- }
- </script>
|