BarAreaSpotsLine class

Holds data for drawing line on the spots under the BarAreaData.

Constructors

BarAreaSpotsLine({bool? show, FlLine? flLineStyle, CheckToShowSpotLine? checkToShowSpotLine, bool? applyCutOffY})
If show is true, LineChart draws some lines on above or below the spots, you can customize the appearance of the lines using flLineStyle and you can decide to show or hide the lines on each spot using checkToShowSpotLine.

Properties

applyCutOffY bool
Determines to inherit the cutOff properties from its parent BarAreaData
final
checkToShowSpotLine CheckToShowSpotLine
Checks to show or hide lines on the spots.
final
flLineStyle FlLine
Holds appearance of drawing line on the spots.
final
hashCode int
The hash code for this object.
no setterinherited
props List<Object?>
Used for equality check, see EquatableMixin.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
show bool
Determines to show or hide all the lines.
final
stringify bool?
If set to true, the toString method will be overridden to output this instance's props.
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

Static Methods

lerp(BarAreaSpotsLine a, BarAreaSpotsLine b, double t) BarAreaSpotsLine
Lerps a BarAreaSpotsLine based on t value, check Tween.lerp.