Question

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

Was it helpful?

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

OTHER TIPS

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top