minorGridLines property
Customizes the appearance of the minor grid lines.
Minor grids are the lines drawn on the plot area at all the minor intervals between the major intervals.
Widget build(BuildContext context) {
return Container(
child: SfCartesianChart(
primaryXAxis: NumericAxis(minorGridLines: MinorGridLines(width: 0)),
)
);
}
Implementation
final MinorGridLines minorGridLines;