Question
Is there any limit for data label for pie chart?
Hi team,
i have requirement to implement a donut style of pie chart. everything is fine expect the data labels. it is not showing complete label name in the legend.
a!pieChartField(
label: "Employee Credential Status",
labelPosition: "ABOVE",
series: {
a!chartSeries(label: "off boarding or termination of client", data: 1374, color: "BLUEGRAY"),
a!chartSeries(label: "making account to non billabale", data: 343, color: "AMBER"),
a!chartSeries(label: "updated accouts to check pay", data: 97, color: "RED")
},
height: "SHORT",
seriesLabelStyle: "LEGEND",
colorScheme: "CLASSIC",
style: "DONUT",
showTooltips:true,
showDataLabels: true,
showAsPercentage: true
)

The requirement is to show complete label in the legend.
