Linear Scale - Suggested Min-Max

    config setup

    1. const NUMBER_CFG = {count: DATA_COUNT, min: 0, max: 100};
    2. const labels = Utils.months({count: 7});
    3. const data = {
    4. labels: labels,
    5. label: 'Dataset 1',
    6. data: [10, 30, 39, 20, 25, 34, -10],
    7. borderColor: Utils.CHART_COLORS.red,
    8. backgroundColor: Utils.CHART_COLORS.red,
    9. },
    10. data: [18, 33, 22, 19, 11, 39, 30],
    11. borderColor: Utils.CHART_COLORS.blue,
    12. backgroundColor: Utils.CHART_COLORS.blue,
    13. }
    14. ]