zb-admin/src/views/charts/components/simple/gauge.vue

64 lines
1.2 KiB
Vue
Raw Normal View History

2022-03-28 10:32:20 +00:00
<template>
<div :id="id" :class="className" :style="{ height: height, width: width }" />
2022-03-28 10:32:20 +00:00
</template>
<script lang="ts" setup>
import * as echarts from 'echarts'
import { EChartsType } from 'echarts/core'
import { onMounted } from 'vue'
2022-03-28 10:32:20 +00:00
let props = defineProps({
className: {
type: String,
default: 'chart',
},
config: {
type: Object,
default: () => {},
},
id: {
type: String,
default: 'chart',
},
width: {
type: String,
default: '200px',
},
height: {
type: String,
default: '200px',
},
})
const options = {
tooltip: {
formatter: '{a} <br/>{b} : {c}%',
},
series: [
{
name: 'Pressure',
type: 'gauge',
detail: {
formatter: '{value}',
},
data: [
{
value: 50,
name: 'SCORE',
},
],
2022-03-28 10:32:20 +00:00
},
],
}
let chart: EChartsType
const initChart = () => {
let chart = echarts.init(document.getElementById(props.id))
chart.setOption(options)
return chart
}
onMounted(() => {
chart = initChart()
window.addEventListener('resize', function () {
chart && chart.resize()
})
2022-03-28 10:32:20 +00:00
})
</script>