ComponentOne FinancialChart for WPF
C1.WPF.Chart Namespace / FlexChartBase Class / LegendItemFormat Event



In This Topic
    LegendItemFormat Event
    In This Topic
    Fires when formatting legend item.
    Syntax
    'Declaration
     
    
    Public Event LegendItemFormat As EventHandler(Of LegendItemFormatEventArgs)
    'Usage
     
    
    Dim instance As FlexChartBase
    Dim handler As EventHandler(Of LegendItemFormatEventArgs)
     
    AddHandler instance.LegendItemFormat, handler
    public event EventHandler<LegendItemFormatEventArgs> LegendItemFormat
    public:
    event EventHandler<LegendItemFormatEventArgs^>^ LegendItemFormat
    Event Data

    The event handler receives an argument of type LegendItemFormatEventArgs containing data related to this event. The following LegendItemFormatEventArgs properties provide information specific to this event.

    PropertyDescription
    Gets data object associated with the legend item.  
    Gets or sets the legend item text.  
    See Also