Files
drip/config.js
T
2018-08-21 21:23:29 +02:00

18 lines
359 B
JavaScript

const config = {
chartHeight: 350,
columnWidth: 25,
temperatureScale: {
defaultLow: 35,
defaultHigh: 38,
min: 34,
max: 40,
units: 0.1
}
}
const margin = 3
config.columnMiddle = config.columnWidth / 2,
config.dateRowY = config.chartHeight - 15 - margin
config.cycleDayNumberRowY = config.chartHeight - margin
export default config