Chartjs-ChartJS line chart not plotting values that are less than minY

0👍

set your minY to the smallest element in your data array:

Array.min = function( array ){
    return Math.min.apply( Math, array );
};

Leave a comment