SimpleBar class

Defines a Simple singular Bar with a Single Y-Value

See Also: BarGroup

Inheritance

Constructors

SimpleBar.new({required num xValue, required BarData yValue, BarDataStyle? style, double padding = 10})
Defines a Simple singular Bar with a Single Y-Value

Properties

hashCode int
The hash code for this object.
no setterinherited
padding double
The amount of padding applied to either side of the bars.
finalinherited
props List<Object?>
The list of properties that will be used to determine whether two instances are equal.
no setter
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.
finalinherited
xValue num
The Value along X-Axis for this BarGroup.
finalinherited
yValue BarData
The Y-Value data (BarData) for this Bar.
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) SimpleBar
Lerps between two SimpleBars for a factor t
override