ChartPoint<D> class

Constructors

ChartPoint({required Color? color, required D domain, required D? domainLowerBound, required D? domainUpperBound, required Color? fillColor, required String? label, required num? measure, required num? measureLowerBound, required num? measureUpperBound, required double? radius, required String? shape, required double? strokeWidth})

Properties

color → Color?
final
domain → D
final
domainLowerBound → D?
final
domainUpperBound → D?
final
fillColor → Color?
final
hashCode int
The hash code for this object.
no setterinherited
label String?
final
measure num?
final
measureLowerBound num?
final
measureUpperBound num?
final
radius double?
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
shape String?
final
strokeWidth double?
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Abstract function that concrete classes must implement. This must encode the internal data model to a JSON compatible representation.
toString() String
Returns the string encoded JSON representation for this class. This will remove all null values and empty collections from the returned string.
inherited

Operators

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

Static Methods

fromDynamic<D>(dynamic map) ChartPoint<D>