BarGroup class abstract

Defines the structure of a Group of Bars.

Holds the X-Value, Labels and Styling.

Implementers

Constructors

BarGroup.new({required num xValue, BarDataStyle? style, double padding = 10})
Defines the structure of a Group of Bars.

Properties

hashCode int
The hash code for this object.
no setterinherited
padding double
The amount of padding applied to either side of the bars.
final
props List<Object?>
The list of properties that will be used to determine whether two instances are equal.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
stringify bool?
If set to true, the toString method will be overridden to output this instance's props.
no setterinherited
style BarDataStyle?
Styling for the Bars in this BarGroup.
final
xValue num
The Value along X-Axis for this BarGroup.
final

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(BarGroup? current, BarGroup target, double t) BarGroup
Lerps between two BarGroup objects for a factor t.
lerpBarGroupList(List<BarGroup>? current, List<BarGroup> target, double t) List<BarGroup>
Lerps between two Lists of BarGroup for a factor t.