imaNNeo/fl_chart

axisTitleData missing in LineChartData

Open

#1201 aperta il 8 gen 2023

Vedi su GitHub
 (6 commenti) (0 reazioni) (0 assegnatari)Dart (1964 fork)batch import
Line Chartenhancementgood first issue

Metriche repository

Star
 (7513 star)
Metriche merge PR
 (Nessuna PR mergiata in 30 g)

Descrizione

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

Guida contributor