@qn-pandora/pandora-visualization
Version:
Pandora 通用可视化库
20 lines (19 loc) • 648 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.colorTypeOptions = void 0;
var honeycomb_1 = require("../../../constants/honeycomb");
var type_1 = require("../../../constants/language/honeycomb/type");
exports.colorTypeOptions = [
{
text: type_1.HoneycombLocale.color_type.custom,
value: honeycomb_1.EColorType.Custom
},
{
text: type_1.HoneycombLocale.color_type.single_color,
value: honeycomb_1.EColorType.SingleColorGradient
},
{
text: type_1.HoneycombLocale.color_type.mutil_color,
value: honeycomb_1.EColorType.MultiColorGradient
}
];