HomeSort by relevance Sort by last modified time
    Searched refs:getGraphWidget (Results 1 - 13 of 13) sorted by null

  /external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
StepChartExampleActivity.java 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.getGraphWidget().getDomainOriginLinePaint().setColor(Color.BLACK);
65 mySimpleXYPlot.getGraphWidget().getRangeOriginLinePaint().setColor(Color.BLACK);
66 mySimpleXYPlot.getGraphWidget().setMarginRight(5);
97 //mySimpleXYPlot.getGraphWidget().getGridLinePaint().setAlpha(0);
TimeSeriesActivity.java 58 plot1.getGraphWidget().getGridBackgroundPaint().setColor(Color.WHITE);
59 plot1.getGraphWidget().getDomainGridLinePaint().setColor(Color.BLACK);
60 plot1.getGraphWidget().getDomainGridLinePaint().
62 plot1.getGraphWidget().getRangeGridLinePaint().setColor(Color.BLACK);
63 plot1.getGraphWidget().getRangeGridLinePaint().
65 plot1.getGraphWidget().getDomainOriginLinePaint().setColor(Color.BLACK);
66 plot1.getGraphWidget().getRangeOriginLinePaint().setColor(Color.BLACK);
87 plot1.getGraphWidget().setPaddingRight(2);
XYPlotWithBgImgActivity.java 33 plot.getGraphWidget().getBackgroundPaint().setColor(Color.TRANSPARENT);
34 plot.getGraphWidget().getGridBackgroundPaint().setShader(WHITE_SHADER);
35 plot.getGraphWidget().getDomainGridLinePaint().setColor(Color.BLACK);
36 plot.getGraphWidget().getDomainGridLinePaint().setPathEffect(new DashPathEffect(new float[]{3, 3}, 1));
37 plot.getGraphWidget().getRangeGridLinePaint().setColor(Color.BLACK);
38 plot.getGraphWidget().getRangeGridLinePaint().setPathEffect(new DashPathEffect(new float[]{3, 3}, 1));
39 plot.getGraphWidget().getDomainOriginLinePaint().setColor(Color.BLACK);
40 plot.getGraphWidget().getRangeOriginLinePaint().setColor(Color.BLACK);
41 //plot.getGraphWidget().setMarginTop(10);
86 /*RectF graphRect = plot.getGraphWidget().getGridRect()
    [all...]
DualScaleXYPlotExampleActivity.java 78 XYGraphWidget graphWidget_LEFT = myXYPlot_LEFT.getGraphWidget();
91 XYGraphWidget graphWidget_RIGHT = myXYPlot_RIGHT.getGraphWidget();
108 myXYPlot_LEFT.getGraphWidget().position(
110 myXYPlot_RIGHT.getGraphWidget().position(
119 myXYPlot_LEFT.getGraphWidget().position(
128 myXYPlot_RIGHT.getGraphWidget().position(
TouchZoomExampleActivity.java 68 mySimpleXYPlot.getGraphWidget().setTicksPerRangeLabel(2);
69 mySimpleXYPlot.getGraphWidget().setTicksPerDomainLabel(2);
70 mySimpleXYPlot.getGraphWidget().getBackgroundPaint().setColor(Color.TRANSPARENT);
71 mySimpleXYPlot.getGraphWidget().setRangeValueFormat(
73 mySimpleXYPlot.getGraphWidget().setDomainValueFormat(
75 mySimpleXYPlot.getGraphWidget().setRangeLabelWidth(25);
XYRegionExampleActivity.java 264 plot.getGraphWidget().setRangeLabelHorizontalOffset(-1);
267 plot.getGraphWidget().setRangeLabelWidth(25);
270 plot.getGraphWidget().setDomainLabelWidth(15);
272 plot.getGraphWidget().setDomainLabelVerticalOffset(-6);
348 plot.getGraphWidget().addDomainAxisValueLabelRegion(
350 plot.getGraphWidget().addDomainAxisValueLabelRegion(
353 plot.getGraphWidget().addRangeAxisValueLabelRegion(
355 plot.getGraphWidget().addRangeAxisValueLabelRegion(
SimpleXYPlotActivity.java 80 plot.getGraphWidget().setDomainLabelOrientation(-45);
DynamicXYPlotActivity.java 66 dynamicPlot.getGraphWidget().setDomainValueFormat(new DecimalFormat("0"));
106 dynamicPlot.getGraphWidget().getDomainGridLinePaint().setPathEffect(dashFx);
107 dynamicPlot.getGraphWidget().getRangeGridLinePaint().setPathEffect(dashFx);
BarPlotExampleActivity.java 132 plot.getGraphWidget().setGridPadding(30, 10, 30, 0);
314 if (plot.getGraphWidget().getGridRect().contains(point.x, point.y)) {
OrientationSensorExampleActivity.java 70 aprLevelsPlot.getGraphWidget().getDomainLabelPaint().setColor(Color.TRANSPARENT);
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
XYPlot.java 252 getGraphWidget().setGridPaddingTop(top);
253 getGraphWidget().setGridPaddingBottom(bottom);
254 getGraphWidget().setGridPaddingLeft(left);
255 getGraphWidget().setGridPaddingRight(right);
276 if (getGraphWidget().getGridRect() != null) {
277 return getGraphWidget().getGridRect().contains(x, y);
294 getGraphWidget().setCursorPosition(point);
298 getGraphWidget().setCursorPosition(x, y);
302 return getGraphWidget().getYVal(point);
306 return getGraphWidget().getXVal(point);
    [all...]
XYLegendWidget.java 99 Paint bgPaint = plot.getGraphWidget().getGridBackgroundPaint();
107 Paint bgPaint = plot.getGraphWidget().getGridBackgroundPaint();
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/xy/
XYPlotTest.java 476 assertEquals(Color.parseColor(param3), plot.getGraphWidget().getDomainLabelPaint().getColor());

Completed in 3890 milliseconds