2

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

Amrit Pal Singh
  • 7,116
  • 7
  • 40
  • 50

2 Answers2

1

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

shreyas
  • 2,166
  • 3
  • 18
  • 30
0

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

Ekanta Swain
  • 473
  • 2
  • 13
  • 28