imaNNeo/fl_chart

axisTitleData missing in LineChartData

Open

#1.201 aberto em 8 de jan. de 2023

Ver no GitHub
 (6 comments) (0 reactions) (0 assignees)Dart (1.964 forks)batch import
Line Chartenhancementgood first issue

Métricas do repositório

Stars
 (7.513 stars)
Métricas de merge de PR
 (Nenhuma PRs mesclada em 30d)

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(),
      ),
    );
  }
}

Guia do colaborador