Can the legend labels show series column names from the datatable bound to the source.
Hello CoolBreeze,
Let me know if you need further assistance regarding this.
Thank you for the update.
I guess that you are experiencing the same issue as in the forum thread.
http://community.infragistics.com/forums/p/38268/226040.aspx#226040
I recommend you using the shared approach:
this.ultraChart1.ColorModel.ModelStyle = ColorModels.CustomSkin;
this.ultraChart1.ColorModel.Skin.ApplyRowWise = true;
in this case you won't need to specify custom legend string format.
Hope this helps.
The format string is set to series_label.
UltraChart1.Legend.FormatString =
"<SERIES_LABEL>";
The chart is duplicating the first series label for each of the items listed in the y axis.
Hello CoolBreeze ,
You should set the FormatString to be <SERIES_LABEL>
By default it is <ITEM_LABEL>
http://help.infragistics.com/NetAdvantage/ASPNET/2010.3/CLR4.0/?page=Chart_Label_Formatting.html
UltraChart1.Legend.FormatString = "<SERIES_LABEL>";
Please refer to the below forum thread discussing similar issue.
http://community.infragistics.com/forums/p/38268/226040.aspx
Let me know if you need further assistance.