Skip to content Skip to sidebar Skip to footer

Dataset And Renderer Should Not Be Null And Should Have Same Number Of Series In Achartengine

I'm using Multiple Y axis Graph for plotting points I have 1)X-axis 2)Y1-axis 3)Y2-axis a)Initially I used to draw 5 series of lines on Y1 axes(Height) and Same 5 series of lines(

Solution 1:

sorry the problem was with the logic i have used above ,I have changed the line

if (!(mWeightInKgMonthDate.isEmpty() && mHeightInCmsMonthDate.isEmpty()))

to

if (!mWeightInKgMonthDate.isEmpty() && !mHeightInCmsMonthDate.isEmpty())

thats it..

Post a Comment for "Dataset And Renderer Should Not Be Null And Should Have Same Number Of Series In Achartengine"