tiny-vue_version0/examples/sites/demos/pc/app/chart/liquidfill/base.vue

54 lines
1.0 KiB
Vue

<template>
<div>
<tiny-liquidfill :options="options"></tiny-liquidfill>
</div>
</template>
<script lang="jsx">
import { ChartLiquidfill } from '@opentiny/vue'
export default {
components: {
TinyLiquidfill: ChartLiquidfill
},
data() {
return {
options: {
label: {
formatter: '{a}\n\n购房比: {c}',
fontSize: 40
},
legend: {
show: false
},
series: [
{
name: '广东深圳',
data: [
0.6,
{
value: 0.5,
itemStyle: {
color: 'red'
}
},
0.4
],
center: ['25%', '50%'],
shape: 'circle',
waveAnimation: false
},
{
name: '江苏南京',
data: [0.7, 0.5, 0.4, 0.3],
color: ['#BD72f0', '#6D8FF0', '#6D8FF0'],
center: ['75%', '50%'],
shape: 'rect'
}
]
}
}
}
}
</script>