Hi
Hemalatha, thanks to this example, I understood why the event doesn't fire. if I subscribe after series being adding the event doesn't work but if I subscribe before adding series it works for example:
In the below example Chart_LegendItemCreated handler will not be called:
chart.Series.Add(series);
chart.LegendItemCreated += Chart_LegendItemCreated;
In the below example Chart_LegendItemCreated handler will be called:
chart.LegendItemCreated += Chart_LegendItemCreated;
chart.Series.Add(series);
Regards
Khasan