Home
last modified time | relevance | path

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

/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
DXYPlot.java346 Number thisY = series.getY(i); in calculateMinMaxVals() local
347 if (isPointVisible(thisX, thisY)) { in calculateMinMaxVals()
364 if (thisY != null && (calculatedMinY == null || in calculateMinMaxVals()
365 thisY.doubleValue() < calculatedMinY.doubleValue())) { in calculateMinMaxVals()
366 calculatedMinY = thisY; in calculateMinMaxVals()
371 …if (thisY != null && (calculatedMaxY == null || thisY.doubleValue() > calculatedMaxY.doubleValue()… in calculateMinMaxVals()
372 calculatedMaxY = thisY; in calculateMinMaxVals()
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
DBarPlotExampleActivity.java327 Number thisY = series.getY(i); in onPlotClicked() local
328 if (thisX != null && thisY != null) { in onPlotClicked()
332 LineRegion.measure(y, thisY).doubleValue(); in onPlotClicked()
343 thisY.doubleValue() >= y.doubleValue()) { in onPlotClicked()