Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dillonzq/LoveIt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDillon <dillonzq@outlook.com>2022-05-08 21:32:16 +0300
committerDillon <dillonzq@outlook.com>2022-05-08 21:32:16 +0300
commitc5bed70e04a42f61fb3dbbd20f1b261f4f8a1798 (patch)
tree50298fdfeb4ddd376832d039fd6012e1f6fc4cc9 /src
parentd813292d3f88830e2294eaa4cbd1c393bd78712e (diff)
chore(lib): update echarts 4.8.0 -> 5.3.2
Diffstat (limited to 'src')
-rw-r--r--src/js/theme.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/theme.js b/src/js/theme.js
index a3168c0d..b7e92d03 100644
--- a/src/js/theme.js
+++ b/src/js/theme.js
@@ -500,7 +500,7 @@ class Theme {
}
this._echartsArr = [];
this.util.forEach(document.getElementsByClassName('echarts'), $echarts => {
- const chart = echarts.init($echarts, this.isDark ? 'dark' : 'macarons', {renderer: 'svg'});
+ const chart = echarts.init($echarts, this.isDark ? 'chalk' : 'macarons', {renderer: 'svg'});
chart.setOption(JSON.parse(this.data[$echarts.id]));
this._echartsArr.push(chart);
});