zz-chart
Version:
Alauda Chart components by Alauda Frontend Team
14 lines • 357 B
JavaScript
export const ShapeType = {
Line: 'line',
Area: 'area',
Bar: 'bar',
Point: 'point',
};
export const SHAPE_TYPES = Object.values(ShapeType);
export const PolarShapeType = {
Pie: 'pie',
Gauge: 'gauge',
BarStacked: 'barStacked',
};
export const POLAR_SHAPE_TYPES = Object.values(PolarShapeType);
//# sourceMappingURL=component.js.map