S360fLineChart constructor

const S360fLineChart({
  1. required List<LineChartBarData> lineBarsData,
  2. required List<Map<String, dynamic>> toolTipKeys,
  3. required double convertedValue(
    1. double
    ),
  4. double? maxValue,
  5. double? minValue,
  6. void onRangeChanged(
    1. RangeValues
    )?,
  7. void touchCallback(
    1. FlTouchEvent,
    2. LineTouchResponse?
    )?,
  8. String? xPrefix = '',
  9. String? prefix = '',
  10. String? suffix = '',
  11. bool showGridLines = false,
  12. bool showBorder = true,
  13. bool showSlider = true,
  14. AxisTitles? bottomTitles,
  15. AxisTitles? leftTitles,
  16. LineTouchTooltipData? touchTooltipData,
  17. String xAxisTitle = '',
  18. String yAxisTitle = '',
  19. List<BetweenBarsData> betweenBarsData = const [],
  20. Key? key,
})

Implementation

const S360fLineChart({
  required this.lineBarsData,
  required this.toolTipKeys,
  required this.convertedValue,
  this.maxValue,
  this.minValue,
  this.onRangeChanged,
  this.touchCallback,
  this.xPrefix = '',
  this.prefix = '',
  this.suffix = '',
  this.showGridLines = false,
  this.showBorder = true,
  this.showSlider = true,
  this.bottomTitles,
  this.leftTitles,
  this.touchTooltipData,
  this.xAxisTitle = '',
  this.yAxisTitle = '',
  this.betweenBarsData = const [],
  super.key,
});