Articles in this section
Category / Section

How I can add custom LegendItem to the Legend instead of the automated Legend items

1 min read

 

It is possible to add custom LegendItem to the Legend instead of the automated Legend items. For this we have to use the event Legend.FilterItems of the chartControl. This event is raised before the legend items are rendered.

Here is the code snippet.

C#

private void Legend_FilterItems(object sender, ChartLegendFilterItemsEventArgs e)

{

e.Items.Clear();

ChartLegendItemsCollection item = new ChartLegendItemsCollection();

LegendItem l = new LegendItem();

LegendItem l1 = new LegendItem();

l.ItemStyle.BorderColor=Color.Black;

l.Text="Test1";

l1.ItemStyle.BorderColor = Color.Blue;

l1.Text = "Test2";

item.Add(l);

item.Add(l1);

e.Items = item;

}

Please refer the sample that illustrates this:

ChartLegend

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied