Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
134 changes: 67 additions & 67 deletions common/config/rush/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion common/config/rush/version-policies.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[{"definitionName":"lockStepVersion","policyName":"vchartMain","version":"2.0.1","mainProject":"@visactor/vchart","nextBump":"patch"}]
[{"definitionName":"lockStepVersion","policyName":"vchartMain","version":"2.0.2","mainProject":"@visactor/vchart","nextBump":"patch"}]
26 changes: 26 additions & 0 deletions docs/assets/changelog/en/release.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# v2.0.1

2025-07-24


**🆕 New feature**

- **@visactor/vchart**: add config to avoid brush state update. close [#4035](https://github.com/VisActor/VChart/issues/4035)
- **@visactor/vchart**: optimize datazoom animation effect
- **@visactor/vchart**: add the afterClearScreen hook of render

**🐛 Bug fix**

- **@visactor/vchart**: fix issue with 3d chart grid
- **@visactor/vchart**: tickData of axis should update when `sampling` is changed, fix [#4059](https://github.com/VisActor/VChart/issues/4059)
- **@visactor/vchart**: only calculate multi layer label items when need, fix [#4056](https://github.com/VisActor/VChart/issues/4056)
- **@visactor/vchart**: fix resize error when remake, and re-normal aniamtion bug, fix [#4070](https://github.com/VisActor/VChart/issues/4070)
- **@visactor/vchart**: fix issue with feishu block and call setenv when create vchart
- **@visactor/vchart**: fix bug of tooltip triggerOff & tooltip lock
- **@visactor/vchart**: fix tooltip throw error when some tooltip processor is undefined, fix [#4044](https://github.com/VisActor/VChart/issues/4044)
- **@visactor/vchart**: fix `textAlign` not works in tooltip.style.titleLabel, fix [#4043](https://github.com/VisActor/VChart/issues/4043)



[more detail about v2.0.1](https://github.com/VisActor/VChart/releases/tag/v2.0.1)

22 changes: 22 additions & 0 deletions docs/assets/changelog/zh/release.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# v2.0.1

2025-07-24

**🆕 新增功能**

- **@visactor/vchart**:新增配置项以避免 `brush` 状态更新,关闭 [#4035](https://github.com/VisActor/VChart/issues/4035)
- **@visactor/vchart**:优化 `datazoom` 动画效果
- **@visactor/vchart**:新增 vrender 的 `afterClearScreen` 钩子

**🐛 功能修复**

- **@visactor/vchart**:修复 3D 图表网格问题
- **@visactor/vchart**:当 `sampling` 变更时,轴的 `tickData` 应同步更新,修复 [#4059](https://github.com/VisActor/VChart/issues/4059)
- **@visactor/vchart**:仅在需要时计算多层 `label` 项,修复 [#4056](https://github.com/VisActor/VChart/issues/4056)
- **@visactor/vchart**:修复 `remake` 时的 `resize` 错误及动画归一化 bug,修复 [#4070](https://github.com/VisActor/VChart/issues/4070)
- **@visactor/vchart**:修复飞书 block 相关问题,并在创建 vchart 时调用 setenv
- **@visactor/vchart**:修复 tooltip triggerOff 与 tooltip lock 的 bug
- **@visactor/vchart**:修复 `tooltip` 处理器为 `undefined` 时抛出异常的问题,修复 [#4044](https://github.com/VisActor/VChart/issues/4044)
- **@visactor/vchart**:修复 `tooltip.style.titleLabel` 的 `textAlign` 不生效问题,修复 [#4043](https://github.com/VisActor/VChart/issues/4043)

[更多详情请查看 v2.0.1](https://github.com/VisActor/VChart/releases/tag/v2.0.1)
12 changes: 6 additions & 6 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@
},
"dependencies": {
"@arco-design/web-react": "2.46.1",
"@visactor/openinula-vchart": "workspace:2.0.1",
"@visactor/react-vchart": "workspace:2.0.1",
"@visactor/vchart": "workspace:2.0.1",
"@visactor/vchart-extension": "workspace:2.0.1",
"@visactor/openinula-vchart": "workspace:2.0.2",
"@visactor/react-vchart": "workspace:2.0.2",
"@visactor/vchart": "workspace:2.0.2",
"@visactor/vchart-extension": "workspace:2.0.2",
"@visactor/vchart-theme": "~1.6.6",
"@visactor/vmind": "1.2.4-alpha.5",
"@visactor/vutils": "~1.0.6",
"@visactor/vrender": "1.0.8",
"@visactor/vrender-kits": "1.0.8",
"@visactor/vrender": "1.0.9",
"@visactor/vrender-kits": "1.0.9",
"@visactor/vtable": "1.19.0-alpha.0",
"@visactor/vtable-editors": "1.19.0-alpha.0",
"@visactor/vtable-gantt": "1.19.0-alpha.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/block-vchart/block/vchart/index.js

Large diffs are not rendered by default.

26 changes: 26 additions & 0 deletions packages/harmony_vchart/library/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
# v2.0.1

2025-07-24


**🆕 New feature**

- **@visactor/vchart**: add config to avoid brush state update. close [#4035](https://github.com/VisActor/VChart/issues/4035)
- **@visactor/vchart**: optimize datazoom animation effect
- **@visactor/vchart**: add the afterClearScreen hook of render

**🐛 Bug fix**

- **@visactor/vchart**: fix issue with 3d chart grid
- **@visactor/vchart**: tickData of axis should update when `sampling` is changed, fix [#4059](https://github.com/VisActor/VChart/issues/4059)
- **@visactor/vchart**: only calculate multi layer label items when need, fix [#4056](https://github.com/VisActor/VChart/issues/4056)
- **@visactor/vchart**: fix resize error when remake, and re-normal aniamtion bug, fix [#4070](https://github.com/VisActor/VChart/issues/4070)
- **@visactor/vchart**: fix issue with feishu block and call setenv when create vchart
- **@visactor/vchart**: fix bug of tooltip triggerOff & tooltip lock
- **@visactor/vchart**: fix tooltip throw error when some tooltip processor is undefined, fix [#4044](https://github.com/VisActor/VChart/issues/4044)
- **@visactor/vchart**: fix `textAlign` not works in tooltip.style.titleLabel, fix [#4043](https://github.com/VisActor/VChart/issues/4043)



[more detail about v2.0.1](https://github.com/VisActor/VChart/releases/tag/v2.0.1)

# v1.13.11

2025-05-29
Expand Down
2 changes: 1 addition & 1 deletion packages/harmony_vchart/library/oh-package.json5
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
name: '@visactor/harmony-vchart',
version: '2.0.1',
version: '2.0.2',
description: '@visactor/vchart 针对 harmonyOS 打造的图表库,拥有非常酷炫的动画能力,近20种图表类型,以及原生的渲染性能',
main: 'Index.ets',
author: {
Expand Down
Loading
Loading