Line Chartenhancementgood first issue
倉庫指標
- Star
- (7,513 star)
- PR 合併指標
- (30 天內沒有已合併 PR)
描述
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(),
),
);
}
}