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/25 13:35:57 UTC

[echarts] 02/03: fix(boxplot): remove empty `boxplotVisual`.

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

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

commit 080bdeb99c34195918fe3995a40067739e27059a
Author: plainheart <yh...@all-my-life.cn>
AuthorDate: Sun Sep 25 21:33:48 2022 +0800

    fix(boxplot): remove empty `boxplotVisual`.
---
 src/chart/boxplot/boxplotVisual.ts | 26 --------------------------
 src/chart/boxplot/install.ts       |  4 +---
 2 files changed, 1 insertion(+), 29 deletions(-)

diff --git a/src/chart/boxplot/boxplotVisual.ts b/src/chart/boxplot/boxplotVisual.ts
deleted file mode 100644
index 067738a7b..000000000
--- a/src/chart/boxplot/boxplotVisual.ts
+++ /dev/null
@@ -1,26 +0,0 @@
-/*
-* Licensed to the Apache Software Foundation (ASF) under one
-* or more contributor license agreements.  See the NOTICE file
-* distributed with this work for additional information
-* regarding copyright ownership.  The ASF licenses this file
-* to you under the Apache License, Version 2.0 (the
-* "License"); you may not use this file except in compliance
-* with the License.  You may obtain a copy of the License at
-*
-*   http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing,
-* software distributed under the License is distributed on an
-* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-* KIND, either express or implied.  See the License for the
-* specific language governing permissions and limitations
-* under the License.
-*/
-
-import GlobalModel from '../../model/Global';
-import ExtensionAPI from '../../core/ExtensionAPI';
-import BoxplotSeriesModel from './BoxplotSeries';
-
-export default function boxplotVisual(ecModel: GlobalModel, api: ExtensionAPI) {
-
-}
\ No newline at end of file
diff --git a/src/chart/boxplot/install.ts b/src/chart/boxplot/install.ts
index e579f296f..b5a7efcd9 100644
--- a/src/chart/boxplot/install.ts
+++ b/src/chart/boxplot/install.ts
@@ -20,14 +20,12 @@
 import { EChartsExtensionInstallRegisters } from '../../extension';
 import BoxplotSeriesModel from './BoxplotSeries';
 import BoxplotView from './BoxplotView';
-import boxplotVisual from './boxplotVisual';
 import boxplotLayout from './boxplotLayout';
 import { boxplotTransform } from './boxplotTransform';
 
 export function install(registers: EChartsExtensionInstallRegisters) {
     registers.registerSeriesModel(BoxplotSeriesModel);
     registers.registerChartView(BoxplotView);
-    registers.registerVisual(boxplotVisual);
     registers.registerLayout(boxplotLayout);
     registers.registerTransform(boxplotTransform);
-}
\ 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