Interface IChartExtension<T>
Represents a standard interface for classes supporting the RadChart's extensibility mechanism.
Namespace: Telerik.Windows.Controls.Charting
Assembly: Telerik.Windows.Controls.Charting.dll
Syntax
public interface IChartExtension<T>
Type Parameters
T
The type of the extended object. |
Methods
Attach(T)
Enables an extension object to find out when it has been aggregated. Called when the extension is added to the ChartArea.Extensions collection property.
Declaration
void Attach(T owner)
Parameters
T
owner
The ChartArea object whose Extensions collection is being modified (new extension added). |
Detach(T)
Enables an object to find out when it is no longer aggregated. Called when an extension is removed from the ChartArea.Extensions collection property.
Declaration
void Detach(T owner)
Parameters
T
owner
The ChartArea object whose Extensions collection is being modified (extension removed). |