Hi,
I have a text that is to long to fit, is it possible to render it on two lines?
I think I have read it somewhere but I cant find it now!
/Mattias
I have a text that is to long to fit, is it possible to render it on two lines?
ChartSeries s = new ChartSeries(); |
s.Type = ChartSeriesType.Bar; |
ChartSeriesItem item = new ChartSeriesItem(); |
item.Name = "This text is way to long to fit!"; |
chart1.Series.Add(s); |
I think I have read it somewhere but I cant find it now!
/Mattias