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/09/22 03:57:59 UTC

[incubator-echarts] branch next updated: expose helper.getECData for gl.

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.git


The following commit(s) were added to refs/heads/next by this push:
     new 3162fe3  expose helper.getECData for gl.
3162fe3 is described below

commit 3162fe304a84a65ea93b0b3d9e22e86888a3646b
Author: pissang <bm...@gmail.com>
AuthorDate: Tue Sep 22 11:57:30 2020 +0800

    expose helper.getECData for gl.
---
 src/helper.ts | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/src/helper.ts b/src/helper.ts
index 92622b4..a0332d8 100644
--- a/src/helper.ts
+++ b/src/helper.ts
@@ -17,6 +17,10 @@
 * under the License.
 */
 
+/**
+ * This module exposes helper functions for developing extensions.
+ */
+
 import * as zrUtil from 'zrender/src/core/util';
 import createListFromArray from './chart/helper/createListFromArray';
 // import createGraphFromNodeEdge from './chart/helper/createGraphFromNodeEdge';
@@ -31,6 +35,7 @@ import {
 } from './data/helper/dataStackHelper';
 import SeriesModel from './model/Series';
 import { AxisBaseModel } from './coord/AxisBaseModel';
+import { getECData } from './util/ecData';
 
 /**
  * Create a muti dimension List structure from seriesModel.
@@ -105,4 +110,6 @@ export function createScale(dataExtent: number[], option: object | AxisBaseModel
  */
 export function mixinAxisModelCommonMethods(Model: Model) {
     zrUtil.mixin(Model, AxisModelCommonMixin);
-}
\ No newline at end of file
+}
+
+export {getECData};
\ No newline at end of file


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