imaNNeo/fl_chart

axisTitleData missing in LineChartData

Open

#1 201 ouverte le 8 janv. 2023

Voir sur GitHub
 (6 commentaires) (0 réactions) (0 assignés)Dart (1 964 forks)batch import
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(),
      ),
    );
  }
}

Guide contributeur