CustomizeLegendEventArgs.LegendItems Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Used to remove, modify or change the order of both custom and default legend items in the CustomizeLegend event. Can also be used to add custom legend items.
public:
property System::Windows::Forms::DataVisualization::Charting::LegendItemsCollection ^ LegendItems { System::Windows::Forms::DataVisualization::Charting::LegendItemsCollection ^ get(); };
public System.Windows.Forms.DataVisualization.Charting.LegendItemsCollection LegendItems { get; }
member this.LegendItems : System.Windows.Forms.DataVisualization.Charting.LegendItemsCollection
Public ReadOnly Property LegendItems As LegendItemsCollection
Property Value
A LegendItemsCollection object.
Remarks
The LegendItems property allows you to delete or modify both default and custom legend items in the CustomizeLegend event, and to add custom legend items. The order of legend items can also be changed.
Note
The SeriesPointIndex and SeriesName properties can be used to determine the data element that is associated with a default legend item. These properties will return zero-length strings for custom legend items, because custom items are not associated with chart data.
This property enables you to determine which Legend the event was raised for, which enables you to customize an individual Legend.