zz-chart
Version:
Alauda Chart components by Alauda Frontend Team
17 lines (16 loc) • 537 B
TypeScript
import { ValueOf } from '../index.js';
export declare const ShapeType: {
readonly Line: "line";
readonly Area: "area";
readonly Bar: "bar";
readonly Point: "point";
};
export declare type ShapeType = ValueOf<typeof ShapeType>;
export declare const SHAPE_TYPES: ("line" | "area" | "bar" | "point")[];
export declare const PolarShapeType: {
Pie: string;
Gauge: string;
BarStacked: string;
};
export declare type PolarShapeType = ValueOf<typeof PolarShapeType>;
export declare const POLAR_SHAPE_TYPES: string[];