This is my options for my echarts, i don't know where to add an options to display value of my data on the pie chart . or any indicators to display values without hover event.
this.options = {
backgroundColor: this.eTheme.bg,
tooltip: {
trigger: 'item',
formatter: '{b} : {c}',
},
legend: {
orient: 'vertical',
left: 'left',
data: [],
},
series: [
{
name: 'Users',
type: 'pie',
radius: '50%',
center: ['50%', '70%'],
data: [],
},
],
};