What is the best workaround to create custom headers (e. g. for a category) - right now I am using a visual with HTML code. But again, a lot of padding and unused space:
The labels in the pie chart are usually based on length of text and the available space in the color pie section. To create more space you can decrease empty space within the pie chart using the following setting: http://documentation.arcadiadata.com/4.5.0.0/#pages/topics/marks-arc-width.html
That usually helps make the labels appear.
Just to confirm I understand your quest is the sort order of the legend? that it’s always in alphabetic order (False first, then True) - correct?
That is the default behavior and there’s no out of the box setting to change.
Two options I see:
i) You create calculated column that pre-pends “1” or “2” in front of the dimension value. So your legend labels would look like:
“1 - True”
“2 - False”
case when [kpi] = “xxx” then 1 when [kpi] = “yyy” then 2 when [kpi] = “aaa” then 3 when [kpi] = “bbbbbb” then 4 when [kpi] = “ccc” then 5 when [kpi] = “dddd” then 6 when [kpi] = “eee” then 7 else 0 end as ‘KPI_Sortiert’
After that, the “True and False” order is reversed. I want to start with the “False” values and on top the “True” values. The little piece of code is changing the order: