This is an automated email from the ASF dual-hosted git repository. ovilia pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/echarts-theme-builder.git
commit ed50ab93f32f02e5b1c50f2c8ae9fcf8e2f52efc Author: Ovilia <[email protected]> AuthorDate: Wed Nov 5 15:52:47 2025 +0800 fix: small improvement --- src/locales/en.json | 2 +- src/utils/chartConfigs.ts | 4 ++-- vite.config.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/locales/en.json b/src/locales/en.json index 47412de..16c8231 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -16,7 +16,7 @@ "functions": "Functions", "basicConfig": "Basic Configuration", "visualMap": "Visual Map", - "grid": "Grid Layout", + "grid": "Grid (Cartesian)", "axis": "Axes", "legend": "Legend", "legendPosition": "Legend Position", diff --git a/src/utils/chartConfigs.ts b/src/utils/chartConfigs.ts index 0360c93..43c8dd2 100644 --- a/src/utils/chartConfigs.ts +++ b/src/utils/chartConfigs.ts @@ -63,7 +63,7 @@ export function getChartConfigs(seriesCnt: number = 4): ChartConfig[] { type: 'line' as const, data: getRandomArray(axisCat.length, 800, 200), markPoint: { - data: [{ name: 'Max', type: 'max' }] + data: [{ name: 'Min', type: 'min' }] } })) } @@ -129,7 +129,7 @@ export function getChartConfigs(seriesCnt: number = 4): ChartConfig[] { type: 'bar' as const, data: getRandomArray(axisCat.length, 800, 200), markPoint: { - data: [{ name: 'Max', type: 'max' }] + data: [{ name: 'Min', type: 'min' }] } })) } diff --git a/vite.config.ts b/vite.config.ts index 23acac6..629541c 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -91,7 +91,7 @@ function createHtmlOutputPlugin(): Plugin { } // Clean up the original dist directory - await fse.remove(distDir); + // await fse.remove(distDir); } }; } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
