I've got a gantt chart (RangeBar) I've made with the MS Chart control; for some shorter series, the label gets displayed outside the bar; I'd prefer to set it so the label gets stays inside the bar and gets truncated (with ellipsis would be nice). Is there a way of doing this? I've been poking around in the properties of the chart and series for ages now with no success.

Cheers

link|improve this question

80% accept rate
feedback

1 Answer

I think the property you need to set is BarLabelStyle

eg.

chart.Series["mySeries"]["BarLabelStyle"] = "Center";

See this Dundas page that explains that custom property which should be similar or same for the MS Chart control.

link|improve this answer
Sorry, this doesn't change anything for me :| – Jez Clark Apr 15 '11 at 22:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.