/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/ |
D | DualScaleXYPlotExampleActivity.java | 39 import com.androidplot.xy.XYPlot; 49 private XYPlot myXYPlot_LEFT, myXYPlot_RIGHT; 69 myXYPlot_LEFT = (XYPlot) findViewById(R.id.mySimpleXYPlot_L); in onCreate() 70 myXYPlot_RIGHT = (XYPlot) findViewById(R.id.mySimpleXYPlot_R); in onCreate() 176 myXYPlot_RIGHT.setVisibility(XYPlot.VISIBLE); in updateView() 179 myXYPlot_RIGHT.setVisibility(XYPlot.INVISIBLE); in updateView() 183 myXYPlot_LEFT.setVisibility(XYPlot.VISIBLE); in updateView() 186 myXYPlot_LEFT.setVisibility(XYPlot.INVISIBLE); in updateView()
|
D | OrientationSensorExampleActivity.java | 46 private XYPlot aprLevelsPlot = null; 47 private XYPlot aprHistoryPlot = null; 68 aprLevelsPlot = (XYPlot) findViewById(R.id.aprLevelsPlot); in onCreate() 101 aprHistoryPlot = (XYPlot) findViewById(R.id.aprHistoryPlot); in onCreate()
|
D | SimpleXYPlotActivity.java | 32 private XYPlot plot; 46 plot = (XYPlot) findViewById(R.id.mySimpleXYPlot); in onCreate()
|
D | TimeSeriesActivity.java | 33 private XYPlot plot1; 41 plot1 = (XYPlot) findViewById(R.id.plot1); in onCreate()
|
D | TouchZoomExampleActivity.java | 36 import com.androidplot.xy.XYPlot; 45 private XYPlot mySimpleXYPlot; 66 mySimpleXYPlot = (XYPlot) findViewById(R.id.mySimpleXYPlot); in onCreate()
|
D | ListViewActivity.java | 32 import com.androidplot.xy.XYPlot; 70 Plot p = (XYPlot) v.findViewById(R.id.xyplot); in getView()
|
D | StepChartExampleActivity.java | 36 private XYPlot mySimpleXYPlot; 46 mySimpleXYPlot = (XYPlot) findViewById(R.id.stepChartExamplePlot); in onCreate()
|
D | XYPlotWithBgImgActivity.java | 19 private XYPlot plot; 27 plot = (XYPlot) findViewById(R.id.graph_metrics); in onCreate()
|
D | BarPlotExampleActivity.java | 61 private XYPlot plot; 107 plot = (XYPlot) findViewById(R.id.mySimpleXYPlot); in onCreate() 395 public SeriesRenderer getRendererInstance(XYPlot plot) { in getRendererInstance() 402 public MyBarRenderer(XYPlot plot) { in MyBarRenderer()
|
D | DynamicXYPlotActivity.java | 48 private XYPlot dynamicPlot; 61 dynamicPlot = (XYPlot) findViewById(R.id.dynamicXYPlot); in onCreate()
|
D | XYRegionExampleActivity.java | 45 private XYPlot plot; 82 plot = (XYPlot) findViewById(R.id.xyRegionExamplePlot); in onCreate()
|
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/widget/ |
D | DemoAppWidgetProvider.java | 29 import com.androidplot.xy.XYPlot; 38 XYPlot plot = new XYPlot(context, "Widget Example"); in onUpdate()
|
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/ |
D | XYSeriesFormatter.java | 25 …lass XYSeriesFormatter<XYRegionFormatterType extends XYRegionFormatter> extends Formatter<XYPlot> { 64 public abstract SeriesRenderer getRendererInstance(XYPlot plot); in getRendererInstance()
|
D | XYSeriesRenderer.java | 29 extends SeriesRenderer<XYPlot, XYSeries, XYFormatterType> { 31 public XYSeriesRenderer(XYPlot plot) { in XYSeriesRenderer()
|
D | StepRenderer.java | 29 public StepRenderer(XYPlot plot) { in StepRenderer()
|
D | StepFormatter.java | 41 public SeriesRenderer getRendererInstance(XYPlot plot) { in getRendererInstance()
|
D | BezierLineAndPointFormatter.java | 47 public SeriesRenderer getRendererInstance(XYPlot plot) { in getRendererInstance()
|
D | XYPlot.java | 38 public class XYPlot extends Plot<XYSeries, XYSeriesFormatter, XYSeriesRenderer> { class 141 public XYPlot(Context context, String title) { in XYPlot() method in XYPlot 145 public XYPlot(Context context, String title, RenderMode mode) { in XYPlot() method in XYPlot 149 public XYPlot(Context context, AttributeSet attributes) { in XYPlot() method in XYPlot 153 public XYPlot(Context context, AttributeSet attrs, int defStyle) { in XYPlot() method in XYPlot
|
D | BezierLineAndPointRenderer.java | 27 public BezierLineAndPointRenderer(XYPlot plot) { in BezierLineAndPointRenderer()
|
D | XYLegendWidget.java | 47 private XYPlot plot; 69 public XYLegendWidget(LayoutManager layoutManager, XYPlot plot, in XYLegendWidget()
|
D | BarFormatter.java | 69 public SeriesRenderer getRendererInstance(XYPlot plot) { in getRendererInstance()
|
D | XYStepCalculator.java | 38 …public static XYStep getStep(XYPlot plot, XYAxisType axisType, RectF rect, Number minVal, Number m… in getStep()
|
D | LineAndPointFormatter.java | 91 public SeriesRenderer getRendererInstance(XYPlot plot) { in getRendererInstance()
|
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/xy/ |
D | XYSeriesRendererTest.java | 73 XYPlot plot = new XYPlot(context, "Test"); in testDataToGridCorrelation()
|
D | XYLegendWidgetTest.java | 74 XYPlot plot = new XYPlot(context, "Test", Plot.RenderMode.USE_MAIN_THREAD); in testDoOnDraw()
|