Maximize productivity with
30% off* for a limited time
using BOOSTDEV30.
Includes 3- and 5-packs.
*Some exclusions may apply.New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.
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)),
|