In the FloodStation Graph the timestamps are overlapping for small screens.
This can be fixed by setting a dynamic interval in ReadingGraph.getBottomTitles
AxisTitlesgetBottomTitles(List<FlSpot>spots){returnAxisTitles(sideTitles:SideTitles(interval:90,// change this to a dynamic value
reservedSize:40,showTitles:true,maxIncluded:false,minIncluded:false,getTitlesWidget:(value,meta)=>SideTitleWidget(meta:meta,child:Text(getDate(value)),),),);}
In the FloodStation Graph the timestamps are overlapping for small screens.

This can be fixed by setting a dynamic interval in ReadingGraph.getBottomTitles
```dart
AxisTitles getBottomTitles(List<FlSpot> spots) {
return AxisTitles(
sideTitles: SideTitles(
interval: 90, // change this to a dynamic value
reservedSize: 40,
showTitles: true,
maxIncluded: false,
minIncluded: false,
getTitlesWidget: (value, meta) => SideTitleWidget(
meta: meta,
child: Text(getDate(value)),
),
),
);
}
```
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
In the FloodStation Graph the timestamps are overlapping for small screens.

This can be fixed by setting a dynamic interval in ReadingGraph.getBottomTitles