HomeSort by relevance Sort by last modified time
    Searched full:xyplot (Results 1 - 25 of 62) sorted by null

1 2 3

  /external/androidplot/Examples/DemoApp/res/values/
attrs.xml 3 <declare-styleable name="XYPlot">
style.xml 31 <!--<item name="XYPlot:androidplot.title">my domain</item>-->
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
XYSeriesFormatter.java 25 public abstract class XYSeriesFormatter<XYRegionFormatterType extends XYRegionFormatter> extends Formatter<XYPlot> {
58 * subclasses are forced to take a Plot instead of an XYPlot as a parameter,
64 public abstract SeriesRenderer getRendererInstance(XYPlot plot);
XYSeriesRenderer.java 29 extends SeriesRenderer<XYPlot, XYSeries, XYFormatterType> {
31 public XYSeriesRenderer(XYPlot plot) {
BarFormatter.java 69 public SeriesRenderer getRendererInstance(XYPlot plot) {
BezierLineAndPointFormatter.java 47 public SeriesRenderer getRendererInstance(XYPlot plot) {
StepFormatter.java 41 public SeriesRenderer getRendererInstance(XYPlot plot) {
XYStep.java 21 * a stepping model to be used by an XYPlot.
BezierLineAndPointRenderer.java 27 public BezierLineAndPointRenderer(XYPlot plot) {
  /external/androidplot/Examples/DemoApp/res/layout/
step_chart_example.xml 7 <com.androidplot.xy.XYPlot
listview_example_item.xml 22 <com.androidplot.xy.XYPlot
23 android:id="@+id/xyplot"
dual_scale_xy_plot_example.xml 32 <com.androidplot.xy.XYPlot
38 <com.androidplot.xy.XYPlot
time_series_example.xml 23 <com.androidplot.xy.XYPlot
  /external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
DualScaleXYPlotExampleActivity.java 39 import com.androidplot.xy.XYPlot;
49 private XYPlot myXYPlot_LEFT, myXYPlot_RIGHT;
69 myXYPlot_LEFT = (XYPlot) findViewById(R.id.mySimpleXYPlot_L);
70 myXYPlot_RIGHT = (XYPlot) findViewById(R.id.mySimpleXYPlot_R);
72 // Disable Hardware Acceleration on the xyPlot view object.
176 myXYPlot_RIGHT.setVisibility(XYPlot.VISIBLE);
179 myXYPlot_RIGHT.setVisibility(XYPlot.INVISIBLE);
183 myXYPlot_LEFT.setVisibility(XYPlot.VISIBLE);
186 myXYPlot_LEFT.setVisibility(XYPlot.INVISIBLE);
SimpleXYPlotActivity.java 32 private XYPlot plot;
45 // initialize our XYPlot reference:
46 plot = (XYPlot) findViewById(R.id.mySimpleXYPlot);
68 // add a new series' to the xyplot:
ListViewActivity.java 32 import com.androidplot.xy.XYPlot;
70 Plot p = (XYPlot) v.findViewById(R.id.xyplot);
XYPlotWithBgImgActivity.java 19 private XYPlot plot;
27 plot = (XYPlot) findViewById(R.id.graph_metrics);
OrientationSensorExampleActivity.java 46 private XYPlot aprLevelsPlot = null;
47 private XYPlot aprHistoryPlot = null;
68 aprLevelsPlot = (XYPlot) findViewById(R.id.aprLevelsPlot);
101 aprHistoryPlot = (XYPlot) findViewById(R.id.aprHistoryPlot);
StepChartExampleActivity.java 36 private XYPlot mySimpleXYPlot;
45 // initialize our XYPlot reference:
46 mySimpleXYPlot = (XYPlot) findViewById(R.id.stepChartExamplePlot);
BarPlotExampleActivity.java 61 private XYPlot plot;
106 // initialize our XYPlot reference:
107 plot = (XYPlot) findViewById(R.id.mySimpleXYPlot);
289 // add a new series' to the xyplot:
395 public SeriesRenderer getRendererInstance(XYPlot plot) {
402 public MyBarRenderer(XYPlot plot) {
TouchZoomExampleActivity.java 36 import com.androidplot.xy.XYPlot;
45 private XYPlot mySimpleXYPlot;
66 mySimpleXYPlot = (XYPlot) findViewById(R.id.mySimpleXYPlot);
  /external/androidplot/Examples/DemoApp/src/com/androidplot/demos/widget/
DemoAppWidgetProvider.java 29 import com.androidplot.xy.XYPlot;
38 XYPlot plot = new XYPlot(context, "Widget Example");
64 // add a new series' to the xyplot:
  /cts/apps/CtsVerifier/res/layout/
hifi_ultrasound_popup.xml 8 <com.androidplot.xy.XYPlot
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/xy/
XYLegendWidgetTest.java 74 XYPlot plot = new XYPlot(context, "Test", Plot.RenderMode.USE_MAIN_THREAD);
XYSeriesRendererTest.java 73 XYPlot plot = new XYPlot(context, "Test");

Completed in 145 milliseconds

1 2 3