Gets the maximum value after the range changed. The reported maximum is the effective, not the set value.
The MaximumValue property is used to gets the maximum value after the range changed.
public yAxisRangeChanged(sender : any, e: AxisRangeChangedEventArgs) :void {
let maxVal= e.maximumValue
let minVal= e.minimumValue
}
Gets the minimum value after the range changed. The reported minimum is the effective, not the set value.
The MinimumValue property is used to getsthe minimum value after the range changed.
public yAxisRangeChanged(sender : any, e: AxisRangeChangedEventArgs) :void {
let maxVal= e.maximumValue
let minVal= e.minimumValue
}
Gets the maximum value before the range changed. The reported maximum is the effective, not the set value.
The OldMaximumValue property is used to gets the maximum value before the range changed.
Gets the minimum value before the range changed. The reported minimum is the effective, not the set value.
The OldMinimumValue property is used to gets the minimum value before the range changed.
Provides data for Axis RangeChanged events.
The
AxisRangeChangedEventArgsevent fire when the axis range changes.