Home
last modified time | relevance | path

Searched refs:thisX (Results 1 – 2 of 2) sorted by relevance

/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
DXYPlot.java345 Number thisX = series.getX(i); in calculateMinMaxVals() local
347 if (isPointVisible(thisX, thisY)) { in calculateMinMaxVals()
350 if (thisX != null && (calculatedMinX == null || in calculateMinMaxVals()
351 thisX.doubleValue() < calculatedMinX.doubleValue())) { in calculateMinMaxVals()
352 calculatedMinX = thisX; in calculateMinMaxVals()
357 if (thisX != null && (calculatedMaxX == null || in calculateMinMaxVals()
358 thisX.doubleValue() > calculatedMaxX.doubleValue())) { in calculateMinMaxVals()
359 calculatedMaxX = thisX; in calculateMinMaxVals()
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
DBarPlotExampleActivity.java326 Number thisX = series.getX(i); in onPlotClicked() local
328 if (thisX != null && thisY != null) { in onPlotClicked()
330 LineRegion.measure(x, thisX).doubleValue(); in onPlotClicked()