AxisLineConfig constructor

const AxisLineConfig({
  1. bool visible = true,
  2. double strokeWidth = 1,
  3. Color color = const Color(0xFF000000),
})

Creates an axis line configuration.

Implementation

const AxisLineConfig({
  this.visible = true,
  this.strokeWidth = 1,
  this.color = const Color(0xFF000000),
});