Class IgbAxisRangeChangedEventArgs
Provides data for Axis RangeChanged events.
Inheritance
System.Object
IgbAxisRangeChangedEventArgs
Assembly: IgniteUI.Blazor.dll
Syntax
public class IgbAxisRangeChangedEventArgs : BaseRendererElement, JsonSerializable
Constructors
IgbAxisRangeChangedEventArgs()
Declaration
public IgbAxisRangeChangedEventArgs()
Properties
MaximumValue
Gets the maximum value after the range changed. The reported maximum is the effective,
not the set value.
Declaration
public double MaximumValue { get; set; }
Property Value
Type |
Description |
System.Double |
|
MinimumValue
Gets the minimum value after the range changed. The reported minimum is the effective,
not the set value.
Declaration
public double MinimumValue { get; set; }
Property Value
Type |
Description |
System.Double |
|
OldMaximumValue
Gets the maximum value before the range changed. The reported maximum is the effective,
not the set value.
Declaration
public double OldMaximumValue { get; set; }
Property Value
Type |
Description |
System.Double |
|
OldMinimumValue
Gets the minimum value before the range changed. The reported minimum is the effective,
not the set value.
Declaration
public double OldMinimumValue { get; set; }
Property Value
Type |
Description |
System.Double |
|
Type
Declaration
public override string Type { get; }
Property Value
Type |
Description |
System.String |
|
Overrides
Methods
FindByName(String)
Declaration
public override object FindByName(string name)
Parameters
Type |
Name |
Description |
System.String |
name |
|
Returns
Type |
Description |
System.Object |
|
Overrides
FromEventJson(BaseRendererControl, Dictionary<String, Object>)
Declaration
protected override void FromEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
Type |
Name |
Description |
BaseRendererControl |
control |
|
System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
ToEventJson(BaseRendererControl, Dictionary<String, Object>)
Declaration
protected override void ToEventJson(BaseRendererControl control, Dictionary<string, object> args)
Parameters
Type |
Name |
Description |
BaseRendererControl |
control |
|
System.Collections.Generic.Dictionary<System.String, System.Object> |
args |
|
Overrides
Implements