How to add labels to my graphs to indicate which series is what.

My clients don't want legends, they want the labels on the chart area. Possibly with C#?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

The easiest way to set labels is when you bind your data to the chart.

Eg. for a piechart (may be different on other types):

chart.Series["seriesName"].Points.DataBind(MyDataList, "xFieldPropertyName", "yFieldPropertyName", "Label=xFieldPropertyName{p2},LegendText=legendPropertyName");

link|improve this answer
Thanks! I had already figured it out though. Not too many people with Dundas experience here. – EKet Jan 27 '11 at 22:14
feedback

Your Answer

 
or
required, but never shown

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