railbird-gql/component/charts/graph-config.ts

10 lines
307 B
TypeScript
Raw Normal View History

2024-01-12 14:04:45 -07:00
// if values in chartDefaults should not be accessible as props & are a style, move to graphStyles
export const chartDefaults = {
height: 300,
spacingInner: 0.3,
spacingOuter: 0.2,
contentInset: { top: 30, bottom: 30 },
numberOfTicks: 6,
min: 0,
barColors: ['#598EBB', '#F2D4BC', '#DB7878']
};