LineChartOptions constructor

const LineChartOptions({
  1. double hotspotInnerRadius = 3.0,
  2. double hotspotOuterRadius = 6.0,
  3. Color hotspotInnerPaintColor = material.Colors.yellow,
  4. Color hotspotOuterPaintColor = material.Colors.black,
  5. double lineStrokeWidth = 3.0,
})

Constructor with default values.

Implementation

const LineChartOptions({
  this.hotspotInnerRadius = 3.0,
  this.hotspotOuterRadius = 6.0,
  this.hotspotInnerPaintColor = material.Colors.yellow,
  this.hotspotOuterPaintColor = material.Colors.black,
  this.lineStrokeWidth = 3.0,
});