Вопрос

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

Это было полезно?

Решение

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

Другие советы

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

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top