@cranberry-money/shared-constants
Version:
Shared constants for Blueberry platform
23 lines • 730 B
TypeScript
export declare const CHART_CONFIG: {
readonly ALLOCATION_CHART: {
readonly RADIUS: 45;
readonly CIRCUMFERENCE: number;
readonly STROKE_WIDTH: 10;
readonly CENTER_X: 50;
readonly CENTER_Y: 50;
readonly VIEWBOX: "0 0 100 100";
};
readonly DEFAULT_CHART_OPTIONS: {
readonly RESPONSIVE: true;
readonly MAINTAIN_ASPECT_RATIO: false;
readonly ANIMATION_DURATION: 750;
};
readonly PERFORMANCE_CHART: {
readonly LINE_TENSION: 0.4;
readonly POINT_RADIUS: 0;
readonly POINT_HOVER_RADIUS: 6;
readonly BORDER_WIDTH: 2;
};
};
export type ChartConfig = typeof CHART_CONFIG;
//# sourceMappingURL=chart-config.d.ts.map