Skip to content

Releases: imaNNeo/fl_chart

0.68.0

09 May 01:03
Compare
Choose a tag to compare
  • Improvement (by @imaNNeo) Update LineChartSample6 to implement a way to show a tooltip on a single spot, #1620
  • Feature (by @herna) Add titleSunbeamLayout inside the BarChartData to allow the user to customize the layout of the title sunbeam
  • Improvement (by @imaNNeo) Add LineChart and BarChart explanation videos on top of the respective documentation pages (LineChart video, BarChart video)

0.67.0

28 Mar 22:05
Compare
Choose a tag to compare
/// Migration guide:
/// This is the old way:
BarChartData(
  barTouchData: BarTouchData(
    touchTooltipData: BarTouchTooltipData(
      tooltipBgColor: Colors.blueGrey,
    )
  )
)

/// This is the new way:
BarChartData(
  barTouchData: BarTouchData(
    touchTooltipData: BarTouchTooltipData(
      getTooltipColor: (BarChartGroupData group) => Colors.blueGrey,
    )
  )
)

0.66.2

10 Feb 11:59
Compare
Choose a tag to compare
  • BUGFIX (by @stwarwas) Remove dart.io to fix web platform issue, #1577

0.66.1

22 Jan 21:28
Compare
Choose a tag to compare

0.66.0

25 Dec 14:51
Compare
Choose a tag to compare
  • IMPROVEMENT (by @imaNNeo) Add Flutter sdk constraints to the pubspec.yaml to force the user/developer to upgrade the Flutter version to 3.16.0 (latest), #1509
  • IMPROVEMENT (by @imaNNeo) Add dotPainter property to ScatterSpot to allow customizing the dot painter, #568
  • BREAKING (by @imaNNeo) Remove color and radius properties from ScatterSpot (use dotPainter instead), #568
  • BREAKING (by @imaNNeo) Change the default value of FlDotCirclePainter.strokeWidth to 0.0
/// Migration guide:
/// This is the old way:
ScatterSpot(
  2,
  5,
  color: Colors.red,
  radius: 12,
)

/// This is the new way:
ScatterSpot(
  2,
  8,
  dotPainter: FlDotCirclePainter(
    color: Colors.red,
    radius: 22,
  ),
),

0.65.0

24 Nov 22:28
Compare
Choose a tag to compare
  • FEATURE (by @Dartek12) Added gradient to FlLine, #1197
  • BUGFIX (by @imaNNeo) Fix bar line shadow crash when we have only one (or zero) spot, #1466
  • BUGFIX (by @imaNNeo) Fix having negative toY (or positive fromY) in BarChart's minY and maxY calculations, #1470
  • BUGFIX (by @bobatsar) Fix bars drawn outside of diagram
  • FEATURE (by @k0psutin) Add dashed border to BarChartRodData, #1144
  • FEATURE (by @imaNNeo) Allow to show single point line in LineChart, #1438

0.64.0

07 Oct 01:22
Compare
Choose a tag to compare

0.64.0

  • BUGFIX (by @Anas35) Fix Tooltip not displaying when value from BackgroundBarChartRodData is less than zero. #1345.
  • BUGFIX (by @imaNNeo) Fix Negative BarChartRodStackItem are not drawn correctly bug, #1347
  • BUGFIX (by @imaNNeo) Fix bar_chart_helper minY calculation bug, #1388
  • IMPROVEMENT (by @imaNNeo) Consider fraction digits when formatting chart side titles, #1267

0.63.0

10 Jun 15:43
Compare
Choose a tag to compare
  • BUGFIX (by @imaNNeo) Fix PieChart crash on web-renderer html by ignoring sectionsSpace when Path.combine() does not work (it's flutter engine issue), #955
  • BUGFIX (by @imaNNeo) Fix ScatterChart long-press interaction bug (disappears when long-pressing on the chart), #1318
  • FEATURE (by @imaNNeo) Upgrade dart version to 3.0

0.62.0

15 Apr 12:10
Compare
Choose a tag to compare

0.61.0

21 Feb 10:53
Compare
Choose a tag to compare
  • IMPROVEMENT (by @imaNNeo) Remove assertion to check to provide only one of color or gradient property in the BarChartRodData and BackgroundBarChartRodData, #1121.
  • IMPROVEMENT (by @imaNNeo) Make drawBehindEverything property default to true in AxisTitles class, #1097.
  • BUGFIX (by @imaNNeo) Show 0 instead of -0 in some edge-cases in the default titles
  • FEATURE (by @tamasapps): Add tooltipHorizontalAlignment and tooltipHorizontalOffset property in [LineTouchTooltipData], [BarTouchTooltipData], [ScatterTouchTooltipData].
  • FEATURE (by @dhiyaaulauliyaa) Add ability to force SideTitle to be placed inside its corresponding axis bounding box, #603.