| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| 1.1.0 source code.tar.gz | 2025-08-31 | 27.1 MB | |
| 1.1.0 source code.zip | 2025-08-31 | 27.3 MB | |
| README.md | 2025-08-31 | 1.5 kB | |
| Totals: 3 Items | 54.4 MB | 0 | |
- FEATURE (by @kamilJ96) Add
gradientproperty inside ourBarChartRodStackItemto be able to render gradient (along with the possibility to render a solid color), [#919] - FEATURE (by @alettsy) Add
sideTitleAlignmentproperty in ourAxisTitlesto allow you to control the alignment of side titles (for example show them inside the chart), [#1946] - FEATURE (by @huanghui1998hhh) Add
gradientAreaproperty toLineChartBarDatato allow you to control the scope of gradient effects, [#1925] - FEATURE (by @alikhavarii13) Add
labelandlabelStyleproperties in ourBarChartRodStackItemto allow you to show labels on each stack item, [#598] -
BREAKING ⚠️ (by @alikhavarii13)
borderSidenow is a named parameter (instead of a optional positional parameter inBarChartRodStackItemconstructor. 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::::dart BarChartRodStackItem( 0, 10, Colors.green, BorderSide(color: Colors.white), ), to this:
:::dart BarChartRodStackItem( 0, 10, Colors.green, borderSide: BorderSide(color: Colors.white), ),