imaNNeo/fl_chart

can getTitlesWidget function transmit x's index?

オープン

#1,170 opened on 2022/10/14

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

Repository metrics

Stars
 (7,513 個のスター)
PR merge metrics
 (30d に merged PR はありません)

説明

AxisTitles( sideTitles: SideTitles(showTitles: true, getTitlesWidget: (double value, TitleMeta meta) { return SideTitleWidget( axisSide: meta.axisSide, child: Text(value.toString()), ); }), )

Hello, in above code, the getTitlesWidget function transmit x's value. Can it transmit x's index in the future? I have a list consist of map. The map has value and title, I want give the value to x, and give the title to getTitlesWidget. If x's index can be transmitted to getTitlesWidget function, I can use it to achieve title from my list directly. Thank you very much!

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