fix(plugin-chart-echarts): bar chart overflow (#20805)

This commit is contained in:
Stephen Liu 2022-07-23 14:20:00 +08:00 committed by GitHub
parent 557cf4b739
commit 9bf7ed58cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 3 deletions

View File

@ -311,8 +311,5 @@ export function getAxisType(dataType?: GenericDataType): AxisType {
if (dataType === GenericDataType.TEMPORAL) {
return 'time';
}
if (dataType === GenericDataType.NUMERIC) {
return 'value';
}
return 'category';
}