S360fScenarioLineChart constructor

const S360fScenarioLineChart({
  1. required int currentAge,
  2. required List<ScenarioSeries> series,
  3. String xAxisTitle = 'Age',
  4. String yAxisTitle = '',
  5. bool gridLines = true,
  6. List yAxisValues = const <dynamic>[],
  7. double height = 380,
  8. Key? key,
})

Implementation

const S360fScenarioLineChart({
  required this.currentAge,
  required this.series,
  this.xAxisTitle = 'Age',
  this.yAxisTitle = '',
  this.gridLines = true,
  this.yAxisValues = const <dynamic>[],
  this.height = 380,
  super.key,
});