Search code examples
androidplot

Domain boundary Line going invisible in android plot graph


While performing scrolling in android plot graph, domain boundary line is going invisible. How to fix this problem?


Solution

  • you can use

    mySimpleXYPlot.setDomainBoundaries(minval, 
                        maxval, BoundaryMode.FIXED);
    

    where minval is the minimum value of the x axis. and maxval is the max value on the x axis