LineGraph constructor

LineGraph({
  1. required List<Feature> features,
  2. required Size size,
  3. List<String>? labelX,
  4. List<String>? labelY,
  5. String? fontFamily,
  6. Color graphColor = Colors.grey,
  7. bool showDescription = false,
  8. double graphOpacity = 0.3,
  9. bool verticalFeatureDirection = false,
  10. double descriptionHeight = 80,
})

Implementation

LineGraph({
  required this.features,
  required this.size,
  this.labelX,
  this.labelY,
  this.fontFamily,
  this.graphColor = Colors.grey,
  this.showDescription = false,
  this.graphOpacity = 0.3,
  this.verticalFeatureDirection = false,
  this.descriptionHeight = 80,
});