AxisTitles constructor

const AxisTitles({
  1. Widget? axisNameWidget,
  2. double axisNameSize = 16,
  3. SideTitles sideTitles = const SideTitles(),
  4. bool drawBelowEverything = true,
})

you can provide axisName if you want to show a general label on this axis,

axisNameSize determines the maximum size that axisName can use

sideTitles property is responsible to show your axis side labels

Implementation

const AxisTitles({
  this.axisNameWidget,
  this.axisNameSize = 16,
  this.sideTitles = const SideTitles(),
  this.drawBelowEverything = true,
});