2019-06-25 19:57:04 +08:00
|
|
|
<template>
|
|
|
|
<div class="dv-charts-container" :ref="ref">
|
|
|
|
<div class="charts" :ref="chartRef" />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import autoResize from '../../mixins/autoResize.js'
|
|
|
|
|
|
|
|
import Charts from '@jiaminghi/charts'
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'Charts',
|
|
|
|
mixins: [autoResize],
|
|
|
|
props: {
|
|
|
|
option: {
|
|
|
|
type: Object,
|
2019-06-27 19:28:07 +08:00
|
|
|
default: () => ({})
|
2019-06-25 19:57:04 +08:00
|
|
|
}
|
|
|
|
},
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
ref: `charts-container-${(new Date()).getTime()}`,
|
|
|
|
chartRef: `chart-${(new Date()).getTime()}`,
|
|
|
|
|
|
|
|
chart: null
|
|
|
|
}
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
option () {
|
|
|
|
let { chart, option } = this
|
|
|
|
|
|
|
|
if (!option) option = {}
|
|
|
|
|
|
|
|
chart.setOption(option)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
afterAutoResizeMixinInit () {
|
|
|
|
const { initChart } = this
|
2019-06-27 19:28:07 +08:00
|
|
|
|
2019-06-25 19:57:04 +08:00
|
|
|
initChart()
|
|
|
|
},
|
|
|
|
initChart () {
|
|
|
|
const { $refs, chartRef, option } = this
|
|
|
|
|
|
|
|
const chart = this.chart = new Charts($refs[chartRef])
|
|
|
|
|
|
|
|
if (!option) return
|
|
|
|
|
|
|
|
chart.setOption(option)
|
|
|
|
},
|
|
|
|
onResize () {
|
|
|
|
const { chart } = this
|
|
|
|
|
|
|
|
if (!chart) return
|
|
|
|
|
|
|
|
chart.resize()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="less">
|
|
|
|
.dv-charts-container {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
.charts {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|