You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by wa...@apache.org on 2022/09/22 07:15:44 UTC

[echarts-doc] branch master updated: fix(api): add missing new options `useCoarsePointer` & `pointerSize` to `echarts#init` function for en doc.

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 58f14fe8 fix(api): add missing new options `useCoarsePointer` & `pointerSize` to `echarts#init` function for en doc.
58f14fe8 is described below

commit 58f14fe8858f2ac037a999655d6bcb1d13d392b4
Author: plainheart <yh...@all-my-life.cn>
AuthorDate: Thu Sep 22 15:12:42 2022 +0800

    fix(api): add missing new options `useCoarsePointer` & `pointerSize` to `echarts#init` function for en doc.
---
 en/api/echarts.md | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/en/api/echarts.md b/en/api/echarts.md
index b8cfe0ee..144f769f 100644
--- a/en/api/echarts.md
+++ b/en/api/echarts.md
@@ -8,11 +8,13 @@ Global echarts object, which can be accessed after including `echarts.js` in scr
 (dom: HTMLDivElement|HTMLCanvasElement, theme?: Object|string, opts?: {
     devicePixelRatio?: number,
     renderer?: string,
-    useDirtyRect?: boolean, // Since `5.0.0`
-    ssr?: boolean,          // Since `5.3.0`
+    useDirtyRect?: boolean,     // Since `5.0.0`
+    useCoarsePointer?: boolean, // Since `5.4.0`
+    pointerSize?: number,       // Since `5.4.0`
+    ssr?: boolean,              // Since `5.3.0`
     width?: number|string,
     height?: number|string,
-    locale?: string         // Since `5.0.0`
+    locale?: string             // Since `5.0.0`
 }) => ECharts
 ```
 Creates an ECharts instance, and returns an [echartsInstance](~echartsInstance). You shall not initialize multiple ECharts instances on a single container.


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