Og1LineChart constructor

const Og1LineChart({
  1. Key? key,
  2. required ChartLine mainLine,
  3. List<ChartLine>? additionalLines,
  4. required XAxisEnum xAxisEnum,
  5. Color? backgroundColor,
  6. Color? titleColor,
  7. String? yAxisMetric,
  8. double? xTitlesFontSize,
  9. double? yTitlesFontSize,
  10. double? xInterval,
  11. double? yInterval,
})

Implementation

const Og1LineChart({
  Key? key,
  required this.mainLine,
  this.additionalLines,
  required this.xAxisEnum,
  this.backgroundColor,
  this.titleColor,
  this.yAxisMetric,
  this.xTitlesFontSize,
  this.yTitlesFontSize,
  this.xInterval,
  this.yInterval,
}) : super(key: key);