Searched refs:mySimpleXYPlot (Results 1 - 4 of 4) sorted by relevance

/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
H A DStepChartExampleActivity.java36 private XYPlot mySimpleXYPlot; field in class:StepChartExampleActivity
46 mySimpleXYPlot = (XYPlot) findViewById(R.id.stepChartExamplePlot);
56 //mySimpleXYPlot.getLayoutManager().remove(mySimpleXYPlot.getLegendWidget());
59 mySimpleXYPlot.getGraphWidget().getGridBackgroundPaint().setColor(Color.WHITE);
60 mySimpleXYPlot.getGraphWidget().getDomainGridLinePaint().setColor(Color.BLACK);
61 mySimpleXYPlot.getGraphWidget().getDomainGridLinePaint().setPathEffect(new DashPathEffect(new float[]{1, 1}, 1));
62 mySimpleXYPlot.getGraphWidget().getRangeGridLinePaint().setColor(Color.BLACK);
63 mySimpleXYPlot.getGraphWidget().getRangeGridLinePaint().setPathEffect(new DashPathEffect(new float[]{1, 1}, 1));
64 mySimpleXYPlot
[all...]
H A DTouchZoomExampleActivity.java45 private XYPlot mySimpleXYPlot; field in class:TouchZoomExampleActivity
60 mySimpleXYPlot.setDomainBoundaries(minXY.x, maxXY.x, BoundaryMode.FIXED);
63 mySimpleXYPlot.redraw();
66 mySimpleXYPlot = (XYPlot) findViewById(R.id.mySimpleXYPlot);
67 mySimpleXYPlot.setOnTouchListener(this);
68 mySimpleXYPlot.getGraphWidget().setTicksPerRangeLabel(2);
69 mySimpleXYPlot.getGraphWidget().setTicksPerDomainLabel(2);
70 mySimpleXYPlot.getGraphWidget().getBackgroundPaint().setColor(Color.TRANSPARENT);
71 mySimpleXYPlot
[all...]
H A DSimpleXYPlotActivity.java46 plot = (XYPlot) findViewById(R.id.mySimpleXYPlot);
H A DBarPlotExampleActivity.java107 plot = (XYPlot) findViewById(R.id.mySimpleXYPlot);

Completed in 147 milliseconds