Title Configuration

    1. const NUMBER_CFG = {count: DATA_COUNT, min: 0, max: 100};
    2. const data = {
    3. labels: Utils.months({count: DATA_COUNT}),
    4. datasets: [
    5. {
    6. fill: false,
    7. borderColor: Utils.CHART_COLORS.red,
    8. backgroundColor: Utils.transparentize(Utils.CHART_COLORS.red, 0.5),
    9. },
    10. {
    11. fill: false,
    12. borderColor: Utils.CHART_COLORS.blue,
    13. backgroundColor: Utils.transparentize(Utils.CHART_COLORS.blue, 0.5),
    14. }
    15. ]