Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 6, 2025

Bumps fl_chart from 0.70.2 to 1.1.1.

Release notes

Sourced from fl_chart's releases.

1.1.1

  • IMPROVEMENT (by @​imaNNeo) Upgrade vector_math dependency to 2.2.0, #1985
  • IMPROVEMENT (by @​imaNNeo) Upgrade build_runner (dev) dependency to 2.8.0
  • IMPROVEMENT (by @​imaNNeo) Upgrade mockito (dev) dependency to 5.5.1
  • IMPROVEMENT (by @​imaNNeo) Upgrade very_good_analysis (dev) dependency to 9.0.0

1.1.0

  • FEATURE (by @​kamilJ96) Add gradient property inside our BarChartRodStackItem to be able to render gradient (along with the possibility to render a solid color), #919
  • FEATURE (by @​alettsy) Add sideTitleAlignment property in our AxisTitles to allow you to control the alignment of side titles (for example show them inside the chart), #1946
  • FEATURE (by @​huanghui1998hhh) Add gradientArea property to LineChartBarData to allow you to control the scope of gradient effects, #1925
  • FEATURE (by @​alikhavarii13) Add label and labelStyle properties in our BarChartRodStackItem to allow you to show labels on each stack item, #598
  • BREAKING ⚠️ (by @​alikhavarii13) borderSide now is a named parameter (instead of a optional positional parameter in BarChartRodStackItem constructor. As it is a very minor breaking change, we decided to include it in this minor release (instead of doing a major release based on the semantic versioning. Sorry about that! So you just need to change this:
BarChartRodStackItem(
  0,
  10,
  Colors.green,
  BorderSide(color: Colors.white),
),

to this:

BarChartRodStackItem(
  0,
  10,
  Colors.green,
  borderSide: BorderSide(color: Colors.white),
),

1.0.0

  • FEATURE (by @​imaNNeo) Implement a new chart type called CandlestickChart. You can take a look at the documentation here. And I just implemented a basic example to show the Bitcoin price in 2024, you can take a look at it in our sample app here. #433, #1143
  • BREAKING (by @​imaNNeo) Remove the deprecated tooltipRoundedRadius property -> you should use tooltipBorderRadius instead.
  • BUGFIX (by @​imaNNeo) Fix the BarChartData mismatch issue when changing the data, #1911
  • FEATURE (by @​frybitsinc) Add fillGradient property in RadarDataSet
  • BREAKING (by @​imaNNeo) Upgrade the min flutter version to 3.27.4. So please make sure that your project is not using an old flutter version, #1846
  • IMPORTANT (by @​imaNNeo) You can read more about this release and the history of fl_chart here in my blog post

0.71.0

  • IMPROVEMENT (by @​MattiaPispisa) Add a new property called BorderRadius tooltipBorderRadius instead of (deprecated) double tooltipRoundedRadius in BarTouchTooltipData, LineTouchTooltipData and ScatterTouchTooltipData #1715
  • FEATURE (by @​frybitsinc) Add children property in our RadarChartTitle, #1840
  • BUGFIX (by @​morvagergely) Fix the initial zoom issue in our scrollable LineChart, #1863
Changelog

Sourced from fl_chart's changelog.

1.1.1

  • IMPROVEMENT (by @​imaNNeo) Upgrade vector_math dependency to 2.2.0, #1985
  • IMPROVEMENT (by @​imaNNeo) Upgrade build_runner (dev) dependency to 2.8.0
  • IMPROVEMENT (by @​imaNNeo) Upgrade mockito (dev) dependency to 5.5.1
  • IMPROVEMENT (by @​imaNNeo) Upgrade very_good_analysis (dev) dependency to 9.0.0

1.1.0

  • FEATURE (by @​kamilJ96) Add gradient property inside our BarChartRodStackItem to be able to render gradient (along with the possibility to render a solid color), #919
  • FEATURE (by @​alettsy) Add sideTitleAlignment property in our AxisTitles to allow you to control the alignment of side titles (for example show them inside the chart), #1946
  • FEATURE (by @​huanghui1998hhh) Add gradientArea property to LineChartBarData to allow you to control the scope of gradient effects, #1925
  • FEATURE (by @​alikhavarii13) Add label and labelStyle properties in our BarChartRodStackItem to allow you to show labels on each stack item, #598
  • BREAKING ⚠️ (by @​alikhavarii13) borderSide now is a named parameter (instead of a optional positional parameter in BarChartRodStackItem constructor. As it is a very minor breaking change, we decided to include it in this minor release (instead of doing a major release based on the semantic versioning. Sorry about that! So you just need to change this:
BarChartRodStackItem(
  0,
  10,
  Colors.green,
  BorderSide(color: Colors.white),
),

to this:

BarChartRodStackItem(
  0,
  10,
  Colors.green,
  borderSide: BorderSide(color: Colors.white),
),

1.0.0

  • FEATURE (by @​imaNNeo) Implement a new chart type called CandlestickChart. You can take a look at the documentation here. And I just implemented a basic example to show the Bitcoin price in 2024, you can take a look at it in our sample app here. #433, #1143
  • BREAKING (by @​imaNNeo) Remove the deprecated tooltipRoundedRadius property -> you should use tooltipBorderRadius instead.
  • BUGFIX (by @​imaNNeo) Fix the BarChartData mismatch issue when changing the data, #1911
  • FEATURE (by @​frybitsinc) Add fillGradient property in RadarDataSet
  • BREAKING (by @​imaNNeo) Upgrade the min flutter version to 3.27.4. So please make sure that your project is not using an old flutter version, #1846
  • IMPORTANT (by @​imaNNeo) You can read more about this release and the history of fl_chart here in my blog post

0.71.0

  • IMPROVEMENT (by @​MattiaPispisa) Add a new property called BorderRadius tooltipBorderRadius instead of (deprecated) double tooltipRoundedRadius in BarTouchTooltipData, LineTouchTooltipData and ScatterTouchTooltipData #1715
  • FEATURE (by @​frybitsinc) Add children property in our RadarChartTitle, #1840
  • BUGFIX (by @​morvagergely) Fix the initial zoom issue in our scrollable LineChart, #1863
Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [fl_chart](https://github.com/imaNNeo/fl_chart) from 0.70.2 to 1.1.1.
- [Release notes](https://github.com/imaNNeo/fl_chart/releases)
- [Changelog](https://github.com/imaNNeo/fl_chart/blob/main/CHANGELOG.md)
- [Commits](imaNNeo/fl_chart@0.70.2...1.1.1)

---
updated-dependencies:
- dependency-name: fl_chart
  dependency-version: 1.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dart Pull requests that update Dart code dependencies Pull requests that update a dependency file labels Oct 6, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dart Pull requests that update Dart code dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants