Skip to content
Discussion options

You must be logged in to vote

You can customize title data by this way

titlesData: FlTitlesData(
  leftTitles: AxisTitles(
    sideTitles: SideTitles(
      interval: 2,
      showTitles: true,
      getTitlesWidget: (value, meta) {
        // You can return customize label like this
        // if (value == 1) {
        //   return SideTitleWidget(axisSide: meta.axisSide, child: Text('Jan'));
        // }
        return SideTitleWidget(
          axisSide: meta.axisSide,
          child: Text(value.toInt()), // cast value to int
        );
      },
    ),
  ),
),

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by imaNNeo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants