Files
brk/website_next/chart/constants.js
T
2026-07-03 21:06:32 +02:00

20 lines
361 B
JavaScript

export const CHART_SIZE = /** @type {const} */ ({
width: 640,
fallbackHeight: 220,
});
export const CHART_MARKER = /** @type {const} */ ({
fallbackWidth: 84,
height: 20,
edgeOverflow: 8,
});
export const CHART_POINT = /** @type {const} */ ({
radius: 4,
});
export const CHART_FRAME = /** @type {const} */ ({
topGap: 16,
bottomPadding: 8,
});