CoordinateAxisPlugin constructor
CoordinateAxisPlugin({
- AxisValueMode valueMode = AxisValueMode.schema,
- int horizontalTickCount = 12,
- int verticalTickCount = 12,
- double tickLength = 16,
- double majorTickInterval = 50,
- double minorTickInterval = 10,
- double minorTickScale = .5,
- Color axisColor = const Color(0xB3FFFFFF),
- TextStyle? labelStyle,
- EdgeInsets panelMargin = const EdgeInsets.all(12),
- EdgeInsets panelPadding = const EdgeInsets.symmetric(horizontal: 10, vertical: 8),
- Color? axisBgColor = const Color.fromRGBO(0, 0, 0, 0.4),
Implementation
CoordinateAxisPlugin({
this.valueMode = AxisValueMode.schema,
this.horizontalTickCount = 12,
this.verticalTickCount = 12,
this.tickLength = 16,
this.majorTickInterval = 50,
this.minorTickInterval = 10,
this.minorTickScale = .5,
this.axisColor = const Color(0xB3FFFFFF),
this.labelStyle,
this.panelMargin = const EdgeInsets.all(12),
this.panelPadding = const EdgeInsets.symmetric(horizontal: 10, vertical: 8),
this.axisBgColor = const Color.fromRGBO(0, 0, 0, 0.4),
});