FlutterFlowLineChart constructor

const FlutterFlowLineChart({
  1. Key? key,
  2. required List<FFLineChartData> data,
  3. required AxisLabelInfo xAxisLabelInfo,
  4. required AxisLabelInfo yAxisLabelInfo,
  5. Color backgroundColor = Colors.white,
  6. bool showGrid = false,
  7. bool enableTooltip = false,
  8. required Color tooltipBackgroundColor,
  9. 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);