清理打印log

This commit is contained in:
ywyonui 2025-07-04 20:51:47 +08:00
parent c6dd259a52
commit 7bb1548115
2 changed files with 0 additions and 2 deletions

View File

@ -4692,7 +4692,6 @@ function drawYAxisGrid(categories, opts, config, context) {
} }
function drawYAxis(series, opts, config, context) { function drawYAxis(series, opts, config, context) {
console.log('画Y轴');
if (opts.yAxis.disabled === true) { if (opts.yAxis.disabled === true) {
return; return;
} }

View File

@ -361,7 +361,6 @@ const drawTrendChart = () => {
}, },
], ],
format: (val : number) => { format: (val : number) => {
console.log(val);
return val == 0 || val == 100 ? val : ''; return val == 0 || val == 100 ? val : '';
}, },
}, },