Line Chartenhancementgood first issue
Métriques du dépôt
- Stars
- (7 513 stars)
- Métriques de merge PR
- (Aucune PR mergée en 30 j)
Description
In the doc for the LineChartData
as well as in the doc comment for it, the axisTitleData is mentioned.
But LineChartData has no axisTitleData, which probably should be there.
Code to reprouce
class Test extends StatelessWidget {
const Test({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return LineChart(
LineChartData(
axisTitleData: AxisTitles(),
),
);
}
}