getGridData static method
Implementation
static FlGridData getGridData(double? horizontalInterval) {
return FlGridData(
show: true,
drawHorizontalLine: true,
drawVerticalLine: false,
horizontalInterval: horizontalInterval,
getDrawingHorizontalLine: (double value) {
return const FlLine(color: Color(0xFFF2F3F5), strokeWidth: 1);
},
);
}