SfCartesianChart(
primaryXAxis: NumericAxis(
//Hide the gridlines of x-axis
majorGridLines: MajorGridLines(width: 0),
//Hide the axis line of x-axis
axisLine: AxisLine(width: 0),
),
primaryYAxis: NumericAxis(
//Hide the gridlines of y-axis
majorGridLines: MajorGridLines(width: 0),
//Hide the axis line of y-axis
axisLine: AxisLine(width: 0)
),
)
|
how to hide or remove the number beside that how?
primaryYAxis: NumericAxis(
//to hide whole axis
isVisible: false,
// To hide the axis label alone
labelStyle: const TextStyle(fontSize: 0)),
|