Chartjs-Chart.js not accepting data in dataset which stored in local storage

0👍

Problem was solved. I put min and max value for y axis correctly. So get my graph.

I put whole for this….Those who get same issue i hope it helps.

            stacked:true,
            ticks:{
             min:scaleValY,   //scaleValY is value coming from my storage and it updated 
                             // as per keyword.
             max:scaleValY2,//scaleValY2 is value coming from my storage and it updated 
                           //as per keyword. 
              //suggestedMax:100
            }`````

Leave a comment