What are the ways to avoid overlapping when applying label to a certain point set?
I don't quite matter the position of the labels as long as they don't overlap with each other.
I've tried the following configs, but they didn't work as expected:
textStyle.AllowLineCarriage = true;
textStyle.BestPlacement = true;
textStyle.OverlappingRule = LabelOverlappingRule.NoOverlapping;
textStyle.PointPlacement = PointPlacement.UpperRight;
textStyle.YOffsetInPixel = 2;