138 lines
2.7 KiB
Vue
138 lines
2.7 KiB
Vue
<template>
|
|
<div :class="className" :style="{height:height,width:width}" />
|
|
</template>
|
|
|
|
<script>
|
|
import echarts from 'echarts'
|
|
require('echarts/theme/macarons') // echarts theme
|
|
require('echarts/theme/vintage')
|
|
import resize from './mixins/resize'
|
|
|
|
export default {
|
|
mixins: [resize],
|
|
props: {
|
|
className: {
|
|
type: String,
|
|
default: 'chart'
|
|
},
|
|
width: {
|
|
type: String,
|
|
default: '100%'
|
|
},
|
|
height: {
|
|
type: String,
|
|
default: '350px'
|
|
},
|
|
autoResize: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
chartData: {
|
|
type: Object,
|
|
required: true
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
chart: null
|
|
}
|
|
},
|
|
watch: {
|
|
chartData: {
|
|
deep: true,
|
|
handler(val) {
|
|
this.setOptions(val)
|
|
}
|
|
}
|
|
},
|
|
mounted() {
|
|
this.$nextTick(() => {
|
|
this.initChart()
|
|
})
|
|
},
|
|
beforeDestroy() {
|
|
if (!this.chart) {
|
|
return
|
|
}
|
|
this.chart.dispose()
|
|
this.chart = null
|
|
},
|
|
methods: {
|
|
initChart() {
|
|
this.chart = echarts.init(this.$el, 'macarons')
|
|
this.setOptions(this.chartData)
|
|
},
|
|
setOptions({ xAxisData, yAxisData, label, colorPicked} = {}) {
|
|
this.chart.setOption({
|
|
xAxis: {
|
|
data: xAxisData,
|
|
boundaryGap: false,
|
|
axisTick: {
|
|
show: false
|
|
}
|
|
},
|
|
grid: {
|
|
left: 10,
|
|
right: 10,
|
|
bottom: 20,
|
|
top: 30,
|
|
containLabel: true
|
|
},
|
|
tooltip: {
|
|
trigger: 'axis',
|
|
axisPointer: {
|
|
type: 'cross'
|
|
},
|
|
padding: [5, 10]
|
|
},
|
|
yAxis: {
|
|
axisTick: {
|
|
show: false
|
|
}
|
|
},
|
|
legend: {
|
|
data: [label]
|
|
},
|
|
series: [{
|
|
name: label, itemStyle: {
|
|
normal: {
|
|
color: colorPicked,
|
|
lineStyle: {
|
|
color: colorPicked,
|
|
width: 3
|
|
}
|
|
}
|
|
},
|
|
smooth: true,
|
|
type: 'line',
|
|
data: yAxisData,
|
|
animationDuration: 2800,
|
|
animationEasing: 'cubicInOut'
|
|
},
|
|
// {
|
|
// name: 'actual',
|
|
// smooth: true,
|
|
// type: 'line',
|
|
// itemStyle: {
|
|
// normal: {
|
|
// color: '#3888fa',
|
|
// lineStyle: {
|
|
// color: '#3888fa',
|
|
// width: 3
|
|
// },
|
|
// areaStyle: {
|
|
// color: '#f3f8ff'
|
|
// }
|
|
// }
|
|
// },
|
|
// data: actualData,
|
|
// animationDuration: 2800,
|
|
// animationEasing: 'quadraticOut'
|
|
// }
|
|
]
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|