Skip to content

Releases: imaNNeo/fl_chart

0.51.0

30 May 18:47
Compare
Choose a tag to compare
  • FEATURE (by @imaNNeoFighT): Add SideTitleWidget to help you use it in [SideTitles.getTitlesWidget]. It's a wrapper around your widget. It keeps your provided child widget close to the chart. It has angle and space properties to handle margin and rotation. There is a axisSide property that you should fill, it has provided to you in the MetaData object. Check the below sample:
getTitlesWidget: (double value, TitleMeta meta) {
  return SideTitleWidget(
    axisSide: meta.axisSide,
    space: 8.0,
    angle: 0.0,
    child: const Text("This is your widget"),
  );
},
  • IMPROVEMENT (by @imaNNeoFighT): Fix default LineChart interval issue on small view sizes, #909.

0.50.6

17 May 06:30
Compare
Choose a tag to compare
  • IMPROVEMENT Fix a backward compatibility issue with Flutter 3.0, #1016

0.50.5

13 May 19:47
Compare
Choose a tag to compare
  • IMPROVEMENT Fix test coverage problem again :/

0.50.4

13 May 19:36
Compare
Choose a tag to compare
  • IMPROVEMENT Fix test coverage problem

0.50.3

13 May 19:08
Compare
Choose a tag to compare
  • IMPROVEMENT Fix order of drawing lineChart bar indicator problem, #198.
  • FEATURE Add isStrokeJoinRound property in LineChartBarData.
  • IMPROVEMENT Upgrade to Flutter 3, #997.
  • FEATURE Add chartRendererKey property to the LineChart, BarChart, and ScatterChart. We pass it directly to our chart renderers that are responsible to render the chart itself (without anything around it like titles), #987.

0.50.1

02 Apr 20:01
Compare
Choose a tag to compare
  • BUGFIX Allow to show axisTitle without sideTitles, #963

0.50.0

25 Mar 09:09
Compare
Choose a tag to compare

This release has some breaking changes. So please check out the migration guide here

LineChartSample 8 (Source Code)

BarChartSample 7 (Source Code)

0.46.0

11 Mar 20:31
Compare
Choose a tag to compare

0.45.1

03 Mar 20:41
Compare
Choose a tag to compare
  • IMPORTANT Fuck Vladimir Putin
  • BUGFIX Fix FlSpot.nullSpot at the first of list bug, #912.
  • FEATURE Add scatterLabelSettings property in ScatterChart which lets you to add titles on the spots, #902.

0.45.0

12 Feb 18:41
Compare
Choose a tag to compare
  • BUGFIX Fix clipData implementation in ScatterChart and LineChart, #897.
  • BUGFIX Fix PieChart changing sections issue (we have disabled semantics for pieChart badgeWidgets), #861.
  • BUGFIX Fix LineChart width smaller width or height lower than 40, #869, #857.
  • BUGFIX Allow to show title when axis diff is zero, #842, #879.
  • IMPROVEMENT Improve iteration over axis values logic (it solves some minor problems on showing titles when min, max values are below than 1.0).
  • IMPROVEMENT Add baselineX and baselineY property in our axis-based charts, It fixes a problem about interval which mentioned in #893 (check this sample.
  • IMPROVEMENT Added distanceCalculator to LineTouchData which is used to calculate the distance between spots and touch events, #716, #261, #892
  • BREAKING LineTouchResponse response now contains a list of TouchLineBarSpot instead of LineBarSpot. They are ordered based on their distance to the touch event and also contain that distance.