@qn-pandora/pandora-visualization
Version:
Pandora 通用可视化库
14 lines (13 loc) • 391 B
JavaScript
import { get } from 'lodash';
var fieldAxisMap = {
Time: "time" /* Time */,
long: "value" /* Value */,
string: "category" /* Category */,
double: "value" /* Value */,
bool: "category" /* Category */
};
export function getAxisType(fieldType) {
return fieldType
? get(fieldAxisMap, fieldType) || "category" /* Category */
: "category" /* Category */;
}