UNPKG

@qn-pandora/pandora-visualization

Version:

Pandora 通用可视化库

14 lines (13 loc) 512 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isExtendChart = void 0; var chart_style_1 = require("../constants/chart-style"); /** * 静态判断是否是自定义图表 * 为了提高性能,延迟了自定义图表列表接口的加载 * 而图表在初始化时就需要知道是否是自定义图表,因此只能改为静态判断 */ function isExtendChart(chartType) { return !chart_style_1.ChartTypeMap[chartType]; } exports.isExtendChart = isExtendChart;