imaNNeo / imaNNeo/fl_chart

axisTitleData missing in LineChartData

Closed Beginner friendly
#1,201 7 comments 0 reactions 0 assignees View on GitHub
enhancement good first issue Line Chart
Dominant language
Dart
Stars
7.6k
Forks
2k
Avg merge
9d 1h
Merged PRs (30d)
2

Description

In the [doc for the `LineChartData`
](https://github.com/imaNNeoFighT/fl_chart/blob/master/repo_files/documentations/line_chart.md#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
```dart
class Test extends StatelessWidget {
const Test({Key? key}) : super(key: key);

@override
Widget build(BuildContext context) {
return LineChart(
LineChartData(
axisTitleData: AxisTitles(),
),
);
}
}
```

Contributor guide

Open the contributing guide

Research direction

Start with the LineChartData documentation and its doc comment, then compare both with the current LineChartData API used by the reproduction. Determine whether the missing axisTitleData property or the outdated references should be corrected, and verify that the documented example matches the available API.

Written by the indexing model from the issue text.

Assessment

Tech stack
dart, flutter
Domain
frontend
Issue type
Bug
Difficulty
2/5
Estimated time
1-3 hours
Activity status
Active
Clarity
Mostly clear
Newbie friendliness
68/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.