CoordinateAxisPlugin constructor

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