Hello,
I want to show percentage or numbers on pie chart instead of showing up with the legends. Can anyone please help me in this?
Also move the legends to bottom of pie chart.
Currently it is showing up like this:
Attaching screenshot for reference: I want to replace with this:
Discussion posts and replies are publicly visible
Hi manjit.1486 Recently Appian don't have such functionality to customise the pie charts. You can use only default designs refer https://docs.appian.com/suite/help/24.3/Pie_Chart_Component.html .
You can do like following if works:
a!pieChartField( label: "", labelPosition: "COLLAPSED", series: { a!chartSeries(label: "Complete", data: 9), a!chartSeries(label: "Incomplete", data: 91), }, colorScheme: "MIDNIGHT", showDataLabels: true, showTooltips: true, showAsPercentage: true )
Please make sure showAsPercentage is true in the code