FastLineGraph constructor
const
FastLineGraph({
- Key? key,
- required Map<
String, dynamic> variable, - required Color color,
- required MBTimeWindow timeWindow,
- required MBTickerType tickerType,
- required MBGraphSize graphSize,
- required double height,
- required DateTime referenceTime,
Implementation
const FastLineGraph({
super.key,
required Map<String, dynamic> variable,
required Color color,
required MBTimeWindow timeWindow,
required MBTickerType tickerType,
required MBGraphSize graphSize,
required double height,
required DateTime referenceTime,
}) : super(
timeWindow: timeWindow,
tickerType: tickerType,
graphSize: graphSize,
variable: variable,
color: color,
height: height,
referenceTime: referenceTime,
allowedSizes: const [MBGraphSize.half],
allowedVariableTypes: const [MBVariableType.number],
allowedVariableForms: const [MBVariableForm.array],
);