ChartSelectStyle constructor
const
ChartSelectStyle({
- BorderRadius radius = BorderRadius.zero,
- EdgeInsets padding = const EdgeInsets.all(4),
- EdgeInsets margin = const EdgeInsets.only(top: 25, left: 4),
- double fontSize = 10,
- double? width,
- ChartSelectColors colors = const ChartSelectColors(),
- ChartCrossLineStyle x = const ChartCrossLineStyle(),
- ChartCrossLineStyle y = const ChartCrossLineStyle(),
- 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()
});