You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by sh...@apache.org on 2020/11/02 06:33:22 UTC

[incubator-echarts-doc] branch next updated: add doc of darkMode, stateAnimation, valueAnimation. Add version of new added configs

This is an automated email from the ASF dual-hosted git repository.

shenyi pushed a commit to branch next
in repository https://gitbox.apache.org/repos/asf/incubator-echarts-doc.git


The following commit(s) were added to refs/heads/next by this push:
     new 2356e2d  add doc of darkMode, stateAnimation, valueAnimation. Add version of new added configs
2356e2d is described below

commit 2356e2d2dfbb15c09485e9585ea245144370c296
Author: pissang <bm...@gmail.com>
AuthorDate: Mon Nov 2 14:33:06 2020 +0800

    add doc of darkMode, stateAnimation, valueAnimation. Add version of new added configs
---
 zh/option/option.md                  | 15 ++++++++++++
 zh/option/partial/animation.md       |  2 +-
 zh/option/partial/mark-area.md       |  8 +++++++
 zh/option/partial/mark-line.md       |  8 +++++++
 zh/option/partial/mark-point.md      |  4 ++++
 zh/option/partial/state-animation.md | 13 ++++++++++
 zh/option/partial/zr-graphic.md      |  8 +++++++
 zh/option/series/bar.md              | 16 ++++++++++++-
 zh/option/series/boxplot.md          | 16 +++++++++++++
 zh/option/series/candlestick.md      | 16 +++++++++++++
 zh/option/series/effectScatter.md    | 12 ++++++++++
 zh/option/series/funnel.md           | 16 +++++++++++++
 zh/option/series/gauge.md            | 12 ++++++++--
 zh/option/series/graph.md            | 32 +++++++++++++++++++++++++
 zh/option/series/heatmap.md          |  8 +++++++
 zh/option/series/line.md             | 46 ++++++++++++++++++++++++++++++++++++
 zh/option/series/lines.md            | 16 +++++++++++++
 zh/option/series/pictorialBar.md     | 16 +++++++++++++
 zh/option/series/pie.md              | 16 +++++++++++++
 zh/option/series/radar.md            | 16 +++++++++++++
 zh/option/series/sankey.md           | 32 +++++++++++++++++++++++++
 zh/option/series/scatter.md          | 16 +++++++++++++
 zh/option/series/themeRiver.md       |  8 +++++++
 zh/option/series/tree.md             | 24 +++++++++++++++++++
 zh/option/series/treemap.md          |  8 +++++++
 25 files changed, 380 insertions(+), 4 deletions(-)

diff --git a/zh/option/option.md b/zh/option/option.md
index 75dcd4e..bf6224a 100644
--- a/zh/option/option.md
+++ b/zh/option/option.md
@@ -50,6 +50,13 @@
 {{import: series-themeRiver}}
 {{import: series-custom}}
 
+# darkMode(boolean)
+
+是否是暗黑模式,默认会根据背景色 [backgroundColor](~backgroundColor) 的亮度自动设置。
+如果是设置了容器的背景色而无法判断到,就可以使用该配置手动指定,echarts 会根据是否是暗黑模式调整文本等的颜色。
+
+该配置通常会被用于主题中。
+
 # color(Array)
 
 调色盘颜色列表。如果系列没有设置颜色,则会依次循环从该列表中取颜色作为系列颜色。
@@ -74,6 +81,14 @@
 
 {{import: partial-animation }}
 
+# stateAnimation(Object)
+
+状态切换的动画配置,支持在每个系列里设置单独针对该系列的配置。
+
+{{use: partial-state-animation(
+    prefix = '#'
+) }}
+
 
 # blendMode(string) = 'source-over'
 
diff --git a/zh/option/partial/animation.md b/zh/option/partial/animation.md
index 20cc2c0..c45bf8a 100644
--- a/zh/option/partial/animation.md
+++ b/zh/option/partial/animation.md
@@ -33,7 +33,7 @@ animationDurationUpdate: function (idx) {
 }
 ```
 
-#${prefix} animationEasingUpdate(string) = ${defaultAnimationEasingUpdate|default('cubicOut')}
+#${prefix} animationEasingUpdate(string) = ${defaultAnimationEasingUpdate|default('cubicInOut')}
 
 <ExampleUIControlEnum options="linear,quadraticIn,quadraticOut,quadraticInOut,cubicIn,cubicOut,cubicInOut,quarticIn,quarticOut,quarticInOut,quinticIn,quinticOut,quinticInOut,sinusoidalIn,sinusoidalOut,sinusoidalInOut,exponentialIn,exponentialOut,exponentialInOut,circularIn,circularOut,circularInOut,elasticIn,elasticOut,elasticInOut,backIn,backOut,backInOut,bounceIn,bounceOut,bounceInOut" />
 
diff --git a/zh/option/partial/mark-area.md b/zh/option/partial/mark-area.md
index 6b58dc3..ec91609 100644
--- a/zh/option/partial/mark-area.md
+++ b/zh/option/partial/mark-area.md
@@ -43,6 +43,10 @@
 
 ##${prefix} blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 淡出的标域样式。淡出的规则跟随所在系列。
 
 ###${prefix} label(Object)
@@ -244,6 +248,10 @@ data: [
 
 #${prefix} blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 ##${prefix} itemStyle(Object)
 
 {{ use: partial-item-style(
diff --git a/zh/option/partial/mark-line.md b/zh/option/partial/mark-line.md
index c61668d..fd8132f 100644
--- a/zh/option/partial/mark-line.md
+++ b/zh/option/partial/mark-line.md
@@ -60,6 +60,10 @@
 
 ##${prefix} blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 标线的淡出样式。淡出的规则跟随所在系列。
 
 ###${prefix} label(Object)
@@ -300,6 +304,10 @@ data: [
 
 #${prefix} blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 ##${prefix} lineStyle(Object)
 
 {{ use: partial-line-style(
diff --git a/zh/option/partial/mark-point.md b/zh/option/partial/mark-point.md
index 9203766..fe028be 100644
--- a/zh/option/partial/mark-point.md
+++ b/zh/option/partial/mark-point.md
@@ -56,6 +56,10 @@
 
 ##${prefix} blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 标注的淡出样式。淡出的规则跟随所在系列。
 
 ###${prefix} label(Object)
diff --git a/zh/option/partial/state-animation.md b/zh/option/partial/state-animation.md
new file mode 100644
index 0000000..4694d30
--- /dev/null
+++ b/zh/option/partial/state-animation.md
@@ -0,0 +1,13 @@
+{{ target: partial-state-animation }}
+
+#${prefix} duration(number) = ${defaultDuration|default(300)}
+
+<ExampleUIControlNumber min="0" default="${defaultAnimationDuration|default(300)}" step="20" />
+
+状态切换的动画时长,设为 0 则关闭状态动画。
+
+#${prefix} easing(string) = ${defaultEasing|default('cubicOut')}
+
+<ExampleUIControlEnum options="linear,quadraticIn,quadraticOut,quadraticInOut,cubicIn,cubicOut,cubicInOut,quarticIn,quarticOut,quarticInOut,quinticIn,quinticOut,quinticInOut,sinusoidalIn,sinusoidalOut,sinusoidalInOut,exponentialIn,exponentialOut,exponentialInOut,circularIn,circularOut,circularInOut,elasticIn,elasticOut,elasticInOut,backIn,backOut,backInOut,bounceIn,bounceOut,bounceInOut" />
+
+状态切换的动画缓动。
\ No newline at end of file
diff --git a/zh/option/partial/zr-graphic.md b/zh/option/partial/zr-graphic.md
index b5b0406..29b3b74 100644
--- a/zh/option/partial/zr-graphic.md
+++ b/zh/option/partial/zr-graphic.md
@@ -1372,6 +1372,10 @@ chart.on('click', function (params) {
 
 ##${prefix} blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 图形元素的淡出状态,配置`focus`时有效。
 
 ###${prefix} style(Object)
@@ -1380,6 +1384,10 @@ chart.on('click', function (params) {
 
 ##${prefix} select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 图形元素的选中状态,配置自定义系列的 [selectedMode](~series-custom.selectedMode) 时有效。
 
 ###${prefix} style(Object)
diff --git a/zh/option/series/bar.md b/zh/option/series/bar.md
index 208bfa7..e2ec8a1 100644
--- a/zh/option/series/bar.md
+++ b/zh/option/series/bar.md
@@ -170,7 +170,7 @@ option = {
     isNormal = false
 ) }}
 
-## blur(Object)
+## ct)
 
 淡出时的图形样式和标签样式。开启 [emphasis.focus](~series-bar.emphasis.focus) 后有效。
 
@@ -258,6 +258,10 @@ option = {
 
 ### blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 单个数据的淡出状态配置。
 
 {{ use: partial-bar-state(
@@ -268,6 +272,10 @@ option = {
 
 ### select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 单个数据的选中状态配置。
 
 {{ use: partial-bar-state(
@@ -313,6 +321,12 @@ option = {
     formatter = ${topLevel}
 ) }}
 
+{{ if: ${topLevel && isNormal} }}
+##${prefix} valueAnimation(boolean)
+
+是否开启标签的数字动画。
+{{/if}}
+
 #${prefix} labelLine(Object)
 
 {{ use: partial-label-line-desc() }}
diff --git a/zh/option/series/boxplot.md b/zh/option/series/boxplot.md
index 63703f2..a72b0a2 100644
--- a/zh/option/series/boxplot.md
+++ b/zh/option/series/boxplot.md
@@ -127,6 +127,10 @@ box 的宽度的上下限。数组的意思是:`[min, max]`。
 
 ## blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 淡出时的图形样式和标签样式。开启 [emphasis.focus](~series-boxplot.emphasis.focus) 后有效
 
 ### itemStyle(Object)
@@ -138,6 +142,10 @@ box 的宽度的上下限。数组的意思是:`[min, max]`。
 
 ## select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 数据选中时的图形样式和标签样式。开启 [selectedMode](~series-funnel.selectedMode) 后有效。
 
 ### itemStyle(Object)
@@ -223,6 +231,10 @@ ECharts 并不内置对原始数据的处理,输入给 `boxplot` 的数据须
 
 ### blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 盒须图单个数据淡出状态配置。
 
 #### itemStyle(Object)
@@ -234,6 +246,10 @@ ECharts 并不内置对原始数据的处理,输入给 `boxplot` 的数据须
 
 ### select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 盒须图单个数据选中状态配置。
 
 #### itemStyle(Object)
diff --git a/zh/option/series/candlestick.md b/zh/option/series/candlestick.md
index 0c7519e..f2cde03 100644
--- a/zh/option/series/candlestick.md
+++ b/zh/option/series/candlestick.md
@@ -291,6 +291,10 @@ K 线图的高亮状态。
 
 ## blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 K 线图的淡出状态。开启 [emphasis.focus](~series-candlestick.emphasis.focus) 后有效
 
 ### itemStyle(Object)
@@ -302,6 +306,10 @@ K 线图的淡出状态。开启 [emphasis.focus](~series-candlestick.emphasis.f
 
 ## select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 K 线图的选中状态。开启 [selectedMode](~series-candlestick.selectedMode) 后有效。
 
 ### itemStyle(Object)
@@ -392,6 +400,10 @@ K 线图的选中状态。开启 [selectedMode](~series-candlestick.selectedMode
 
 ### blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 单个 K 线图数据的淡出状态配置。
 
 #### itemStyle(Object)
@@ -402,6 +414,10 @@ K 线图的选中状态。开启 [selectedMode](~series-candlestick.selectedMode
 
 ### select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 单个 K 线图数据的选中状态配置。
 
 #### itemStyle(Object)
diff --git a/zh/option/series/effectScatter.md b/zh/option/series/effectScatter.md
index 09b6484..f8e9215 100644
--- a/zh/option/series/effectScatter.md
+++ b/zh/option/series/effectScatter.md
@@ -157,6 +157,10 @@ const option = {
 
 ## blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 淡出状态的配置。开启 [emphasis.focus](~series-effectScatter.emphasis.focus) 后有效。
 
 {{ use: effectScatter-state(
@@ -165,6 +169,10 @@ const option = {
 
 ## select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 选中状态的配置。开启 [selectedMode](~series-effectScatter.selectedMode) 后有效。
 
 {{ use: effectScatter-state(
@@ -234,6 +242,10 @@ const option = {
 
 ### blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 单个数据的淡出图形和标签样式。
 
 {{ use: effectScatter-state(
diff --git a/zh/option/series/funnel.md b/zh/option/series/funnel.md
index d259acb..b6ad275 100644
--- a/zh/option/series/funnel.md
+++ b/zh/option/series/funnel.md
@@ -141,6 +141,10 @@ option = {
 
 ## blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 淡出时的图形样式和标签样式。开启 [emphasis.focus](~series-funnel.emphasis.focus) 后有效
 
 {{ use: partial-funnel-state(
@@ -149,6 +153,10 @@ option = {
 
 ## select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 数据选中时的图形样式和标签样式。开启 [selectedMode](~series-funnel.selectedMode) 后有效。
 
 {{ use: partial-funnel-state(
@@ -236,12 +244,20 @@ option = {
 
 ### blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 {{ use: partial-funnel-state(
     prefix = "###"
 ) }}
 
 ### select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 {{ use: partial-funnel-state(
     prefix = "###"
 ) }}
diff --git a/zh/option/series/gauge.md b/zh/option/series/gauge.md
index dd8f344..e84af88 100644
--- a/zh/option/series/gauge.md
+++ b/zh/option/series/gauge.md
@@ -453,7 +453,7 @@ formatter: function (value) {
 
 {{ target: partial-gauge-title-detail }}
 
-#${prefix|default('#')} title(Object)
+#${prefix} title(Object)
 
 仪表盘标题。
 
@@ -477,7 +477,11 @@ formatter: function (value) {
     noVerticalAlign = true
 ) }}
 
-#${prefix|default('#')} detail(Object)
+##${prefix} valueAnimation(boolean) = true
+
+是否开启标签的数字动画。
+
+#${prefix} detail(Object)
 
 仪表盘详情,用于显示数据。
 
@@ -497,6 +501,10 @@ formatter: function (value) {
     noVerticalAlign = true
 ) }}
 
+##${prefix} valueAnimation(boolean) = true
+
+是否开启标签的数字动画。
+
 ##${prefix} width(number) = 100
 
 <ExampleUIControlPercent default="100" min="0" step="1" />
diff --git a/zh/option/series/graph.md b/zh/option/series/graph.md
index 3b3555e..6c2abb4 100644
--- a/zh/option/series/graph.md
+++ b/zh/option/series/graph.md
@@ -233,12 +233,20 @@ edgeSymbol: ['circle', 'arrow']
 
 ## blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 淡出状态的图形样式。开启 [emphasis.focus](~series-graph.emphasis.focus) 后有效。
 
 {{ use: graph-state() }}
 
 ## select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 选中状态的图形样式。开启 [selectedMode](~series-graph.selectedMode) 后有效。
 
 {{ use: graph-state() }}
@@ -289,12 +297,20 @@ edgeSymbol: ['circle', 'arrow']
 
 ### blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 该类目节点的淡出状态。
 
 {{ use: graph-node-state() }}
 
 ### select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 该类目节点的选中状态。
 
 {{ use: graph-node-state() }}
@@ -387,12 +403,20 @@ data: [{
 
 ### blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 该节点的淡出状态。
 
 {{ use: graph-node-state() }}
 
 ### select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 该节点的选中状态。
 
 {{ use: graph-node-state() }}
@@ -456,12 +480,20 @@ links: [{
 
 ### blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 该关系边的淡出状态。
 
 {{ use: graph-edge-state() }}
 
 ### select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 该关系边的选中状态。
 
 {{ use: graph-edge-state() }}
diff --git a/zh/option/series/heatmap.md b/zh/option/series/heatmap.md
index 0ef39e0..a4dc1c7 100644
--- a/zh/option/series/heatmap.md
+++ b/zh/option/series/heatmap.md
@@ -137,6 +137,10 @@ option = {
 
 ## blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 淡出状态的图形样式。开启 [emphasis.focus](~series-heatmap.emphasis.focus) 后有效。
 
 {{ use: heatmap-state(
@@ -145,6 +149,10 @@ option = {
 
 ## select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 选中状态的图形样式。开启 [selectedMode](~series-heatmap.selectedMode) 后有效。
 
 {{ use: heatmap-state(
diff --git a/zh/option/series/line.md b/zh/option/series/line.md
index 226e09a..b39986a 100644
--- a/zh/option/series/line.md
+++ b/zh/option/series/line.md
@@ -123,6 +123,19 @@ const option = {
     formatter = true
 ) }}
 
+## endLabel(Object)
+
+折线端点的标签。
+
+{{ use: partial-label(
+    prefix = "##",
+    formatter = true
+) }}
+
+### valueAnimation(boolean)
+
+是否开启标签的数字动画。
+
 ## labelLine(Object)
 
 {{ use: partial-label-line-desc() }}
@@ -183,18 +196,51 @@ const option = {
 
 {{ use: line-state() }}
 
+### endLabel(Object)
+
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
+{{ use: partial-label(
+    prefix = "###",
+    formatter = true
+) }}
+
 ## blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 折线图的淡出状态。开启 [emphasis.focus](~series-line.emphasis.focus) 后有效。
 
 {{ use: line-state() }}
 
+### endLabel(Object)
+
+{{ use: partial-label(
+    prefix = "###",
+    formatter = true
+) }}
+
 ## select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 折线图的选中状态。开启 [selectedMode](~series-line.selectedMode) 后有效。
 
 {{ use: line-state() }}
 
+### endLabel(Object)
+
+{{ use: partial-label(
+    prefix = "###",
+    formatter = true
+) }}
+
 {{ use: partial-selected-mode(
     version = '5.0.0'
 ) }}
diff --git a/zh/option/series/lines.md b/zh/option/series/lines.md
index 3d7abd2..a19b486 100644
--- a/zh/option/series/lines.md
+++ b/zh/option/series/lines.md
@@ -142,6 +142,10 @@ ECharts 2.x 里会用地图上的 `markLine` 去绘制迁徙效果,在 ECharts
 
 ## blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 淡出的线条和标签样式。开启 [emphasis.focus](~series-lines.emphasis.focus) 后有效。
 
 {{ use: lines-state(
@@ -150,6 +154,10 @@ ECharts 2.x 里会用地图上的 `markLine` 去绘制迁徙效果,在 ECharts
 
 ## select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 选中的线条和标签样式。开启 [selectedMode](~series-lines.selectedMode) 后有效。
 
 {{ use: lines-state(
@@ -226,12 +234,20 @@ ECharts 2.x 里会用地图上的 `markLine` 去绘制迁徙效果,在 ECharts
 
 ### blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 {{ use: lines-state(
     prefix = "###"
 ) }}
 
 ### select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 {{ use: lines-state(
     prefix = "###"
 ) }}
diff --git a/zh/option/series/pictorialBar.md b/zh/option/series/pictorialBar.md
index 7c0b54d..a017fa7 100644
--- a/zh/option/series/pictorialBar.md
+++ b/zh/option/series/pictorialBar.md
@@ -169,6 +169,10 @@ option = {
 
 ## blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 淡出状态配置。开启 [emphasis.focus](~series-pictoialBar.emphasis.focus) 后有效。
 
 {{ use: pictoialBar-state(
@@ -177,6 +181,10 @@ option = {
 
 ## select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 选中状态配置。开启 [selectedMode](~series-bar.selectedMode) 后有效。
 
 {{ use: partial-selected-mode(
@@ -258,6 +266,10 @@ option = {
 
 ### blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 单个数据的淡出状态配置。
 
 {{ use: partial-bar-state(
@@ -266,6 +278,10 @@ option = {
 
 ### select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 单个数据的选中状态配置。
 
 {{ use: partial-bar-state(
diff --git a/zh/option/series/pie.md b/zh/option/series/pie.md
index f4d62a0..5597fb2 100644
--- a/zh/option/series/pie.md
+++ b/zh/option/series/pie.md
@@ -228,6 +228,10 @@ const option = {
 
 ## blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 淡出状态的扇区和标签样式。开启 [emphasis.focus](~series-pie.emphasis.focus) 后有效。
 
 {{ use: pie-state(
@@ -236,6 +240,10 @@ const option = {
 
 ## select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 选中状态的扇区和标签样式。开启 [selectedMode](~series-pie.selectedMode) 后有效。
 
 {{ use: pie-state(
@@ -312,12 +320,20 @@ const option = {
 
 ### blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 {{ use: pie-state(
     prefix = "###"
 ) }}
 
 ### select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 {{ use: pie-state(
     prefix = "###"
 ) }}
diff --git a/zh/option/series/radar.md b/zh/option/series/radar.md
index 8a020da..f85d9ca 100644
--- a/zh/option/series/radar.md
+++ b/zh/option/series/radar.md
@@ -121,6 +121,10 @@ const option = {
 
 ## blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 淡出状态的配置。开启 [emphasis.focus](~series-radar.emphasis.focus) 后有效。
 
 {{ use: radar-state(
@@ -129,6 +133,10 @@ const option = {
 
 ## select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 选中状态的配置。开启 [selectedMode](~series-radar.selectedMode) 后有效。
 
 {{ use: radar-state(
@@ -216,6 +224,10 @@ data : [
 
 ### blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 单个数据项样式的淡出状态。
 
 {{ use: radar-state(
@@ -224,6 +236,10 @@ data : [
 
 ### select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 单个数据项样式的选中状态。
 
 {{ use: radar-state(
diff --git a/zh/option/series/sankey.md b/zh/option/series/sankey.md
index 4ad3ceb..b8d0610 100644
--- a/zh/option/series/sankey.md
+++ b/zh/option/series/sankey.md
@@ -144,12 +144,20 @@ levels: [{
 
 ### blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 {{ use: sankey-state(
     prefix = "###"
 ) }}
 
 ### select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 {{ use: sankey-state(
     prefix = "###"
 ) }}
@@ -206,6 +214,10 @@ levels: [{
 
 ## blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 桑基图的淡出状态。开启 [emphasis.focus](~series-sankey.emphasis.focus) 后有效。
 
 {{ use: sankey-state(
@@ -214,6 +226,10 @@ levels: [{
 
 ## select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 桑基图的选中状态。开启 [selectedMode](~series-sankey.selectedMode) 后有效。
 
 {{ use: sankey-state(
@@ -278,12 +294,20 @@ data: [{
 
 ### blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 {{ use: sankey-node-state(
     prefix = "###"
 ) }}
 
 ### select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 {{ use: sankey-node-state(
     prefix = "###"
 ) }}
@@ -338,6 +362,10 @@ links: [{
 
 ### blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 #### lineStyle(Object)
 
 {{ use: partial-sankey-line-style(
@@ -346,6 +374,10 @@ links: [{
 
 ### select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 #### lineStyle(Object)
 
 {{ use: partial-sankey-line-style(
diff --git a/zh/option/series/scatter.md b/zh/option/series/scatter.md
index 0ae8861..8592464 100644
--- a/zh/option/series/scatter.md
+++ b/zh/option/series/scatter.md
@@ -168,6 +168,10 @@ const option = {
 
 ## blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 淡出状态的配置。开启 [emphasis.focus](~series-scatter.emphasis.focus) 后有效。
 
 {{ use: scatter-state(
@@ -176,6 +180,10 @@ const option = {
 
 ## select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 选中状态的配置。开启 [selectedMode](~series-scatter.selectedMode) 后有效。
 
 {{ use: scatter-state(
@@ -256,6 +264,10 @@ const option = {
 
 ### blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 单个数据的淡出图形和标签样式。
 
 {{ use: scatter-state(
@@ -264,6 +276,10 @@ const option = {
 
 ### select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 单个数据的选中图形和标签样式。
 
 {{ use: scatter-state(
diff --git a/zh/option/series/themeRiver.md b/zh/option/series/themeRiver.md
index e67ed72..f2fc261 100644
--- a/zh/option/series/themeRiver.md
+++ b/zh/option/series/themeRiver.md
@@ -178,6 +178,10 @@ const option = {
 
 ## blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 淡出状态的配置。
 
 {{ use: themeRiver-state(
@@ -186,6 +190,10 @@ const option = {
 
 ## select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 选中状态的配置。
 
 {{ use: themeRiver-state(
diff --git a/zh/option/series/tree.md b/zh/option/series/tree.md
index 0616838..7cdbfdf 100644
--- a/zh/option/series/tree.md
+++ b/zh/option/series/tree.md
@@ -194,6 +194,10 @@ const option = {
 
 ## blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 淡出状态的相关配置。开启 [emphasis.focus](~series-tree.emphasis.focus) 后有效。
 
 {{ use: tree-state(
@@ -202,6 +206,10 @@ const option = {
 
 ## select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 选中状态的相关配置。开启 [selectedMode](~series-tree.selectedMode) 后有效。
 
 {{ use: tree-state(
@@ -245,6 +253,10 @@ const option = {
 
 ### blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 叶子节点淡出状态的配置。
 
 {{ use: tree-node-state(
@@ -253,6 +265,10 @@ const option = {
 
 ### select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 叶子节点选中状态的配置。
 
 {{ use: tree-node-state(
@@ -333,6 +349,10 @@ const option = {
 
 ### blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 节点淡出状态的配置。
 
 {{ use: tree-node-state(
@@ -341,6 +361,10 @@ const option = {
 
 ### select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 节点选中状态的配置。
 
 {{ use: tree-node-state(
diff --git a/zh/option/series/treemap.md b/zh/option/series/treemap.md
index be12361..8929464 100644
--- a/zh/option/series/treemap.md
+++ b/zh/option/series/treemap.md
@@ -760,6 +760,10 @@ treemap 默认把第一个维度(Array 第一项)映射到『面积』上。
 
 #${prefix} blur(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 淡出状态配置。
 
 {{ use: treemap-state(
@@ -768,6 +772,10 @@ treemap 默认把第一个维度(Array 第一项)映射到『面积』上。
 
 #${prefix} select(Object)
 
+{{ use: partial-version(
+    version = "5.0.0"
+) }}
+
 选中状态配置。
 
 {{ use: treemap-state(


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org