AutoScrollingMode enum

Determines whether the axis should be scrolled from the start position or end position.

For example, if there are 10 data points and autoScrollingDelta value is 5 and AutoScrollingMode.end  is specified to this property, last 5 points will be displayed in the chart. If AutoScrollingMode.start  is set to this property, first 5 points will be displayed.

Defaults to AutoScrollingMode.end.

Inheritance

Constructors

AutoScrollingMode()
const

Values

start → const AutoScrollingMode

AutoScrollingMode.start, if the chart is scrolled from left to right direction.

end → const AutoScrollingMode

AutoScrollingMode.end, if the chart is scrolled from right to left direction.

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<AutoScrollingMode>
A constant List of the values in this enum, in order of their declaration.