Hi all,
Does anyone know how to make the pie chart to display smaller in Appian? Currently, it is displaying bigger than the card KPIs that we have. Any suggestions would be appreciated.
This is our code:
a!columnLayout( width: "MEDIUM", contents: { a!richTextDisplayField( align: "CENTER", value: a!richTextItem( text: "Sanctioned Securities by Workflow Status", style: "EMPHASIS" ) ), a!pieChartField( label: "", labelPosition: "COLLAPSED", series: a!forEach( items: local!pieChartData, expression: a!chartSeries( label: fv!item.lastWorkflowStatus, data: fv!item.lastWorkflowStatusCount ) ), colorScheme: "RAINFOREST", showDataLabels: true(), showTooltips: false ) } )
Thanks,
Roberta
Discussion posts and replies are publicly visible
In general the only way I really know of to do this is to enclose it in a smaller column.
Thank you, Mike. I will try that.
This is how it looks now... lol
A tiny ballon... any other thoughts?
Which column width is that?
I think, I will just remove the pie chart.
Why not try narrow_plus? That seems to be the next step down from "Medium". I'd expect extra_narrow would make everything in it basically icon-sized, as evidenced by your screenshot.
Thank you, Mike. Let me try that.