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. label: 'Dataset 1',
    7. borderColor: Utils.CHART_COLORS.red,
    8. backgroundColor: Utils.transparentize(Utils.CHART_COLORS.red, 0.5),
    9. },
    10. {
    11. label: 'Dataset 2',
    12. fill: false,
    13. borderColor: Utils.CHART_COLORS.blue,
    14. backgroundColor: Utils.transparentize(Utils.CHART_COLORS.blue, 0.5),
    15. ]
    16. };