Hi all, I'm trying to do something pretty simple, just right-aligning the ordinal labels on a horizontal bar chart, so that the right-most part of the label is always a given offset from the vertical axis line. By default, these labels are centered. I've tried:
ordinalScale.Labels.Add(myLabelText);
ordinalScale.LabelStyle.ContentAlignment = ContentAlignment.MiddleRight;
to no avail, also:
NCustomRangeLabel
label = new NCustomRangeLabel();
label.Text = myLabelText;
label.Style.ContentAlignment = ContentAlignment.MiddleRight;
ordinalScale.CustomLabels.Add(label);which crams everything into the top left. Any idea how to change the alignment of labels on a horizontal bar chart?
Thank you!