New
1.1.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:
BarChartRodStackItem(
0,
10,
Colors.green,
BorderSide(color: Colors.white),
),
to this:
BarChartRodStackItem(
0,
10,
Colors.green,
borderSide: BorderSide(color: Colors.white),
),