10 lines
307 B
TypeScript
10 lines
307 B
TypeScript
|
// 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']
|
||
|
};
|