imaNNeo/fl_chart

axisTitleData missing in LineChartData

开放

#1,201 创建于 2023年1月8日

 (6 条评论) (0 个反应) (0 位负责人)Dart (1,964 个派生)batch import
Line Chartenhancementgood first issue

仓库指标

星标
 (7,513 个星标)
PR 合并指标
 (30 天内没有已合并 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(),
      ),
    );
  }
}

贡献者指南