码迷,mamicode.com
首页 > 其他好文 > 详细

vue-echarts-v3 使用 label显示格式

时间:2018-08-29 22:52:17      阅读:1196      评论:0      收藏:0      [点我收藏+]

标签:class   method   value   tool   type   for   echarts   vertica   def   

<template>
<div class="echarts">
<IEcharts :option="pie" @ready="onReady" @click="onClick"></IEcharts>
</div>
</template>
<script>
import IEcharts from ‘vue-echarts-v3/src/lite.js‘;
import ‘echarts/lib/component/title‘; //引入标题组件
import ‘echarts/lib/component/legend‘; //引入图例组件
import ‘echarts/lib/chart/pie‘;
export default {
components: {IEcharts},
data: () => ({
pie: {
title: {
text: ‘ECharts Demo‘
},
tooltip: {},
legend:{
type: ‘plain‘,
orient: ‘vertical‘,
right: 10,
top: 20,
},
series: [{
type: ‘pie‘,
radius : ‘65%‘,
center : [ ‘50%‘, ‘50%‘ ],
label : {
normal : {
formatter: ‘{b}:{c}: ({d}%)‘,
textStyle : {
fontWeight : ‘normal‘,
fontSize : 15
}
}
},
data: [
{name: ‘A‘, value: 1211},
{name: ‘B‘, value: 2323},
{name: ‘C‘, value: 1919}
]
}]
}
}),
methods: {
onReady(instance) {
console.log(instance);
},
onClick(event, instance, echarts) {
console.log(arguments);
}
}
};
</script>
<style scoped>
.echarts{
width: 400px;
height: 400px;
margin: auto;
text-align: center;
}
</style>技术分享图片

vue-echarts-v3 使用 label显示格式

标签:class   method   value   tool   type   for   echarts   vertica   def   

原文地址:https://www.cnblogs.com/cs122/p/9557381.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!