You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by su...@apache.org on 2020/11/23 16:13:44 UTC

[incubator-echarts-doc] branch next updated: tweak doc.

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

sushuang 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 d82f5c9  tweak doc.
     new 954ebc9  Merge branch 'next' of github.com:apache/incubator-echarts-doc into next
d82f5c9 is described below

commit d82f5c9f5bfc42912e0570bde5f20ccb06f05fbb
Author: 100pah <su...@gmail.com>
AuthorDate: Tue Nov 24 00:10:41 2020 +0800

    tweak doc.
---
 en/changelog.md               | 1 +
 zh/tutorial/data-transform.md | 5 +++--
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/en/changelog.md b/en/changelog.md
index 23839fd..0129e70 100644
--- a/en/changelog.md
+++ b/en/changelog.md
@@ -86,6 +86,7 @@
     + [Fix] Keep axis tooltip open on refresh. [#13100](https://github.com/apache/incubator-echarts/pull/13100).
     + [Fix] Skip rendering for data out of axis content in heatmap. [#12991](https://github.com/apache/incubator-echarts/pull/12991).
 + [Break] Breaking changes against v4.9:
+    + The default theme colors has been changed. If intending to use the theme of 4.9-, please set `option.color = ['#c23531', '#2f4554', '#61a0a8', '#d48265', '#91c7ae', '#749f83', '#ca8622', '#bda29a', '#6e7074', '#546570', '#c4ccd3'];`.
     + Remove built-in map geoJSON. [#13565](https://github.com/apache/incubator-echarts/pull/13565).
     + If the upper application previously imported `src/echarts.js`, `src/chart/*.js` and `src/component/*.js`, it can not work any more because all of the files in `/src` folder are migrated to `*.ts`. Instead, the upper application can import `esm/echarts.js`, `esm/chart/*.js` and `esm/component/*.js`.
     + Drop the support of the legacy IE8. The previous VML renderer (necessary in IE8) will not be updated to work in v5.0 util someone proposed with their real scenario.
diff --git a/zh/tutorial/data-transform.md b/zh/tutorial/data-transform.md
index c44f63e..edbd47a 100644
--- a/zh/tutorial/data-transform.md
+++ b/zh/tutorial/data-transform.md
@@ -2,7 +2,7 @@
 
 # 使用 transform 进行数据转换
 
-Apache ECharts (incubating)<sup>TM</sup> 5 开始支持了“数据转换”( data transform )功能。在 echarts 中,“数据转换” 这个词指的是,给定一个已有的“数据集”([dataset](option.html#dataset))和一个“转换方法”([transform](option.html#dataset.transform),echarts 能生成一个新的“数据集”,然后可以使用这个新的“数据集”绘制图表。这些工作都可以声明式地完成。
+Apache ECharts (incubating)<sup>TM</sup> 5 开始支持了“数据转换”( data transform )功能。在 echarts 中,“数据转换” 这个词指的是,给定一个已有的“数据集”([dataset](option.html#dataset))和一个“转换方法”([transform](option.html#dataset.transform)),echarts 能生成一个新的“数据集”,然后可以使用这个新的“数据集”绘制图表。这些工作都可以声明式地完成。
 
 抽象地来说,数据转换是这样一种公式:`outData = f(inputData)`。`f` 是转换方法,例如:`filter`、`sort`、`regression`、`boxplot`、`cluster`、`aggregate`(todo) 等等。有了数据转换能力后,我们就至少可以做到这些事情:
 + 把数据分成多份用不同的饼图展现。
@@ -558,8 +558,9 @@ option = {
 };
 ```
 
-一些使用 echarts-stat 的例子:
+一些使用外部转换器的例子:
 
++ [聚集](${galleryEditorPath}data-transform-aggregate&edit=1&reset=1)
 + [直方图](${galleryEditorPath}bar-histogram&edit=1&reset=1)
 + [简单聚类](${galleryEditorPath}scatter-clustering&edit=1&reset=1)
 + [线性回归线](${galleryEditorPath}scatter-linear-regression&edit=1&reset=1)


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