ChartSelectStyle constructor

const ChartSelectStyle({
  1. BorderRadius radius = BorderRadius.zero,
  2. EdgeInsets padding = const EdgeInsets.all(4),
  3. EdgeInsets margin = const EdgeInsets.only(top: 25, left: 4),
  4. double fontSize = 10,
  5. double? width,
  6. ChartSelectColors colors = const ChartSelectColors(),
  7. ChartCrossLineStyle x = const ChartCrossLineStyle(),
  8. ChartCrossLineStyle y = const ChartCrossLineStyle(),
  9. ChartCrossDotStyle dot = const ChartCrossDotStyle(),
})

Implementation

const ChartSelectStyle({
  this.radius = BorderRadius.zero,
  this.padding = const EdgeInsets.all(4),
  this.margin = const EdgeInsets.only(top: 25, left: 4),
  this.fontSize = 10,
  this.width,
  this.colors = const ChartSelectColors(),
  this.x = const ChartCrossLineStyle(),
  this.y = const ChartCrossLineStyle(),
  this.dot = const ChartCrossDotStyle()
});