Skip to content

Commit 7253f92

Browse files
authored
Merge pull request #3601 from VisActor/docs/generate-changelog-v1.13.2
[Auto changelog] changlog of v1.13.2
2 parents f9e9cd6 + 330c4fb commit 7253f92

File tree

3 files changed

+72
-0
lines changed

3 files changed

+72
-0
lines changed

docs/assets/changelog/en/release.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
# v1.13.2
2+
3+
2024-12-24
4+
5+
6+
**🆕 New feature**
7+
8+
- **@visactor/vchart**: add miss Series and Chart in react vchart, close [#3578](https://github.com/VisActor/VChart/issues/3578)
9+
- **@visactor/vchart**: vchart support clickInterval params
10+
11+
**🐛 Bug fix**
12+
13+
- **@visactor/vchart**: support percentage state radius config in gauge segment mark, [#3459](https://github.com/VisActor/VChart/issues/3459)
14+
- **@visactor/vchart**: media query should not throw error when has empty axis, related to [#3575](https://github.com/VisActor/VChart/issues/3575)
15+
- **@visactor/vchart**: tooltip should not render empty column when `hasShape` of tooltip is `false`, related to [#3572](https://github.com/VisActor/VChart/issues/3572)
16+
- **@visactor/vchart**: `othersLine` of tooltip can be hidden by `visible: false`, related to [#3572](https://github.com/VisActor/VChart/issues/3572)
17+
- **@visactor/vchart**: fix position of tooltip, related to [#3590](https://github.com/VisActor/VChart/issues/3590)
18+
- **@visactor/vchart**: page should not crash when `tickStep` is too small, fix [#3591](https://github.com/VisActor/VChart/issues/3591)
19+
- **@visactor/vchart**: fix updating of customized DOM when has interactive layer, fix [#3587](https://github.com/VisActor/VChart/issues/3587)
20+
- **@visactor/vchart**: fix axis breaks when set `tickStep`, fix [#3560](https://github.com/VisActor/VChart/issues/3560)
21+
22+
23+
24+
[more detail about v1.13.2](https://github.com/VisActor/VChart/releases/tag/v1.13.2)
25+
126
# v1.13.1
227

328
2024-12-17

docs/assets/changelog/zh/release.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# v1.13.2
2+
3+
2024-12-24
4+
5+
**🆕 新增功能**
6+
7+
- **@visactor/vchart**: 在 react vchart 中添加缺失的 Series 和 Chart,关闭 [#3578](https://github.com/VisActor/VChart/issues/3578)
8+
- **@visactor/vchart**: vchart 支持 clickInterval 参数
9+
10+
**🐛 功能修复**
11+
12+
- **@visactor/vchart**: 支持在仪表盘图元中配置百分比状态半径,关闭 [#3459](https://github.com/VisActor/VChart/issues/3459)
13+
- **@visactor/vchart**: 当轴为空时,媒体查询不应抛出错误,相关 [#3575](https://github.com/VisActor/VChart/issues/3575)
14+
- **@visactor/vchart**: 当 tooltip 的 `hasShape``false` 时,不应渲染空列,相关 [#3572](https://github.com/VisActor/VChart/issues/3572)
15+
- **@visactor/vchart**: tooltip 的 `othersLine` 可以通过 `visible: false` 隐藏,相关 [#3572](https://github.com/VisActor/VChart/issues/3572)
16+
- **@visactor/vchart**: 修复 tooltip 的位置,相关 [#3590](https://github.com/VisActor/VChart/issues/3590)
17+
- **@visactor/vchart**: 当 `tickStep` 太小时,页面不应崩溃,修复 [#3591](https://github.com/VisActor/VChart/issues/3591)
18+
- **@visactor/vchart**: 修复在有交互层时自定义 DOM 的更新问题,修复 [#3587](https://github.com/VisActor/VChart/issues/3587)
19+
- **@visactor/vchart**: 修复设置 `tickStep` 时的轴截断刻度问题,修复 [#3560](https://github.com/VisActor/VChart/issues/3560)
20+
21+
[更多详情请查看 v1.13.2](https://github.com/VisActor/VChart/releases/tag/v1.13.2)
22+
123
# v1.13.1
224

325
2024-12-17

packages/harmony_vchart/library/CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
# v1.13.2
2+
3+
2024-12-24
4+
5+
6+
**🆕 New feature**
7+
8+
- **@visactor/vchart**: add miss Series and Chart in react vchart, close [#3578](https://github.com/VisActor/VChart/issues/3578)
9+
- **@visactor/vchart**: vchart support clickInterval params
10+
11+
**🐛 Bug fix**
12+
13+
- **@visactor/vchart**: support percentage state radius config in gauge segment mark, [#3459](https://github.com/VisActor/VChart/issues/3459)
14+
- **@visactor/vchart**: media query should not throw error when has empty axis, related to [#3575](https://github.com/VisActor/VChart/issues/3575)
15+
- **@visactor/vchart**: tooltip should not render empty column when `hasShape` of tooltip is `false`, related to [#3572](https://github.com/VisActor/VChart/issues/3572)
16+
- **@visactor/vchart**: `othersLine` of tooltip can be hidden by `visible: false`, related to [#3572](https://github.com/VisActor/VChart/issues/3572)
17+
- **@visactor/vchart**: fix position of tooltip, related to [#3590](https://github.com/VisActor/VChart/issues/3590)
18+
- **@visactor/vchart**: page should not crash when `tickStep` is too small, fix [#3591](https://github.com/VisActor/VChart/issues/3591)
19+
- **@visactor/vchart**: fix updating of customized DOM when has interactive layer, fix [#3587](https://github.com/VisActor/VChart/issues/3587)
20+
- **@visactor/vchart**: fix axis breaks when set `tickStep`, fix [#3560](https://github.com/VisActor/VChart/issues/3560)
21+
22+
23+
24+
[more detail about v1.13.2](https://github.com/VisActor/VChart/releases/tag/v1.13.2)
25+
126
# v1.13.1
227

328
2024-12-17

0 commit comments

Comments
 (0)