CoordinateAxisPlugin constructor

CoordinateAxisPlugin({
  1. AxisValueMode valueMode = AxisValueMode.schema,
  2. int horizontalTickCount = 12,
  3. int verticalTickCount = 12,
  4. double tickLength = 16,
  5. Color axisColor = const Color(0xB3FFFFFF),
  6. TextStyle? labelStyle,
  7. EdgeInsets panelMargin = const EdgeInsets.all(12),
  8. EdgeInsets panelPadding = const EdgeInsets.symmetric(horizontal: 10, vertical: 8),
  9. 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.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),
});