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 合併指標
 (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(),
      ),
    );
  }
}

貢獻者指南