fl_chart
fl_chart copied to clipboard
convert last version
I need to convert the following code and I didn't understand directly how to convert the following parameters:
getTextStyles margin getTitles
follow code:
leftTitles: AxisTitles( sideTitles: SideTitles( showTitles: true, getTextStyles: (value, _) => const TextStyle( color: Color(0xff7589a2), fontWeight: FontWeight.bold, fontSize: 14, ), margin: 32, reservedSize: 14, getTitles: (value) { if (value % 50 == 0) { return value.toString(); } return ''; }, ), ),
Follow our guidelines here