Skip to content

Commit 40c42dd

Browse files
committed
Update CHANGELOG.md
1 parent b3ce63a commit 40c42dd

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
## newVersion
22
* **FEATURE** (by @huanghui1998hhh) Add `gradientArea` property to `LineChartBarData` to allow you to control the scope of gradient effects, #1925
3+
* **FEATURE** (by @alikhavarii13) Add `label` and `labelStyle` properties in our `BarChartRodStackItem` to allow you to show labels on each stack item, #598
4+
* **BREAKING** ⚠️ (by @alikhavarii13) `borderSide` now is a named parameter (instead of a positioned one) 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](https://semver.org/). Sorry about that!
5+
So you just need to change this:
6+
```dart
7+
BarChartRodStackItem(
8+
0,
9+
10,
10+
Colors.green,
11+
BorderSide(color: Colors.white),
12+
),
13+
```
14+
to this:
15+
```dart
16+
BarChartRodStackItem(
17+
0,
18+
10,
19+
Colors.green,
20+
borderSide: BorderSide(color: Colors.white),
21+
),
22+
```
323

424
## 1.0.0
525
<img width="600" alt="Image" src="https://github.com/user-attachments/assets/3d8b58f4-4ce7-489f-ba45-27ece063f57c" />

0 commit comments

Comments
 (0)