Reputation: 1503
Change the category values in the sample
let categoryValues = ["Total Category of Data", "Net Category of Data", "Gross Category of Data"];
You will see that overflow places elipsis where there is room for double the amount of label text leaving wasted white space and truncated label.
Upvotes: 0
Views: 751
Reputation: 1503
You can override the default label width in code by setting private static MaxLabelWidth = 180;
I changed it from 80 to 180
Upvotes: 0