@visactor/vchart
Version:
charts lib based @visactor/VGrammar
33 lines (32 loc) • 843 B
TypeScript
export type ChartType = keyof typeof ChartTypeEnum | string;
export declare const enum ChartTypeEnum {
common = "common",
area = "area",
line = "line",
bar = "bar",
histogram = "histogram",
rangeColumn = "rangeColumn",
rangeArea = "rangeArea",
map = "map",
pie = "pie",
radar = "radar",
rose = "rose",
scatter = "scatter",
sequence = "sequence",
circularProgress = "circularProgress",
linearProgress = "linearProgress",
wordCloud = "wordCloud",
funnel = "funnel",
waterfall = "waterfall",
boxPlot = "boxPlot",
gauge = "gauge",
sankey = "sankey",
treemap = "treemap",
sunburst = "sunburst",
circlePacking = "circlePacking",
heatmap = "heatmap",
correlation = "correlation",
liquid = "liquid",
venn = "venn",
mosaic = "mosaic"
}