Base class for chart zoom and drag event arguments. Contains the axis ranges at the time the interaction fires.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
C#
public abstract class ChartAxisRangeEventArgs
Inheritance: objectChartAxisRangeEventArgs
Derived Classes:
Constructors
C#
protected ChartAxisRangeEventArgs()
Properties
Contains the visible range of each named axis at the time the event fires.
Dictionary keys are axis names; values describe the min/max boundaries.
Only axes that have a Name set are included.
C#
public Dictionary<string, ChartAxisRangeDescriptor> AxisRanges { get; set; }