Hi,
How do I create legend for area chart?
set ultrachart1.Legend.Visible = true.http://help.infragistics.com/Help/NetAdvantage/NET/2008.2/CLR2.0/html/Chart_Customize_Chart_Legends.html
I tried doing that but still the legend didn't gt displayed.
Is this for a composite chart or non-composite? are you creating series or using databinding? can you post a code snippet which shows how you set up your chart? Thanks.
Thanks Max, It worked.
When adding series to the chart, the legend only displays the series that have a label.
Try doing this:scl.Label = "ScheduledPrincipal";scl1.Label = "Interest";
It's a series.
{
scl.Points.Add(
formatString(cs.CashFlowMap["Month"].ToString(), "Month"), false)));
}
this.ultraChart1.Series.Add((scl1));