Title Configuration
const NUMBER_CFG = {count: DATA_COUNT, min: 0, max: 100};
const data = {
labels: Utils.months({count: DATA_COUNT}),
datasets: [
{
fill: false,
borderColor: Utils.CHART_COLORS.red,
backgroundColor: Utils.transparentize(Utils.CHART_COLORS.red, 0.5),
},
{
fill: false,
borderColor: Utils.CHART_COLORS.blue,
backgroundColor: Utils.transparentize(Utils.CHART_COLORS.blue, 0.5),
}
]