Linear Scale - Suggested Min-Max
config setup
const NUMBER_CFG = {count: DATA_COUNT, min: 0, max: 100};
const labels = Utils.months({count: 7});
const data = {
labels: labels,
label: 'Dataset 1',
data: [10, 30, 39, 20, 25, 34, -10],
borderColor: Utils.CHART_COLORS.red,
backgroundColor: Utils.CHART_COLORS.red,
},
data: [18, 33, 22, 19, 11, 39, 30],
borderColor: Utils.CHART_COLORS.blue,
backgroundColor: Utils.CHART_COLORS.blue,
}
]