imaNNeo/fl_chart

axisTitleData missing in LineChartData

オープン

#1,201 opened on 2023/01/08

 (6 件のコメント) (0 件のリアクション) (0 人の担当者)Dart (1,964 件のフォーク)batch import
Line Chartenhancementgood first issue

Repository metrics

Stars
 (7,513 個のスター)
PR merge metrics
 (30d に merged 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(),
      ),
    );
  }
}

コントリビューターガイド