TinyLineChartOptions class

A set of options to customize a TinyLineChart display.

Limits

Specify xMinLimit, yMinLimit, xMaxLimit or yMaxLimit to customize the data space in which the chart will paint.

Any of these parameters, when omitted, will default to the minimum or maximum value in the coordinates passed to TinyLineChart.dataPoints.

See also:

Annotations

Constructors

TinyLineChartOptions({double? xMinLimit, double? yMinLimit, double? xMaxLimit, double? yMaxLimit, required Color color, required double lineWidth})
const

Properties

color Color
Customize the line color.
final
hashCode int
The hash code for this object.
no setteroverride
lineWidth double
Customize the width of the line.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
xMaxLimit double?
Customize the data space in which the chart will paint.
final
xMinLimit double?
Customize the data space in which the chart will paint.
final
yMaxLimit double?
Customize the data space in which the chart will paint.
final
yMinLimit double?
Customize the data space in which the chart will paint.
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.
override