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

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';
}