FlutterFlowLineChart constructor
const
FlutterFlowLineChart({
- Key? key,
- required List<
FFLineChartData> data, - required AxisLabelInfo xAxisLabelInfo,
- required AxisLabelInfo yAxisLabelInfo,
- Color backgroundColor = Colors.white,
- bool showGrid = false,
- bool enableTooltip = false,
- required Color tooltipBackgroundColor,
- required AxisBounds axisBounds,
Implementation
const FlutterFlowLineChart(
{Key? key,
required this.data,
required this.xAxisLabelInfo,
required this.yAxisLabelInfo,
this.backgroundColor = Colors.white,
this.showGrid = false,
this.enableTooltip = false,
required this.tooltipBackgroundColor,
required this.axisBounds})
: super(key: key);