Home
last modified time | relevance | path

Searched refs:LineAndPointFormatter (Results 1 – 18 of 18) sorted by relevance

/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
DSimpleXYPlotActivity.java63 LineAndPointFormatter series1Format = new LineAndPointFormatter(); in onCreate()
72 LineAndPointFormatter series2Format = new LineAndPointFormatter(); in onCreate()
DTimeSeriesActivity.java69 LineAndPointFormatter series1Format = new LineAndPointFormatter( in onCreate()
84 LineAndPointFormatter formatter = in onCreate()
85 new LineAndPointFormatter(Color.rgb(0, 0,0), Color.BLUE, Color.RED, null); in onCreate()
DXYRegionExampleActivity.java50 private LineAndPointFormatter timFormatter;
51 private LineAndPointFormatter nickFormatter;
52 private LineAndPointFormatter joeFormatter;
53 private LineAndPointFormatter jamesFormatter;
197 private void onCheckBoxClicked(CheckBox cb, LineAndPointFormatter lpf, in onCheckBoxClicked()
285 timFormatter = new LineAndPointFormatter( in seriesSetup()
298 nickFormatter = new LineAndPointFormatter( in seriesSetup()
313 joeFormatter = new LineAndPointFormatter( in seriesSetup()
326 jamesFormatter = new LineAndPointFormatter( in seriesSetup()
DTouchZoomExampleActivity.java34 import com.androidplot.xy.LineAndPointFormatter;
88 new LineAndPointFormatter(Color.rgb(50, 0, 0), null, in onCreate()
91 new LineAndPointFormatter(Color.rgb(50, 50, 0), null, in onCreate()
94 new LineAndPointFormatter(Color.rgb(0, 50, 0), null, in onCreate()
97 new LineAndPointFormatter(Color.rgb(0, 0, 0), null, in onCreate()
DDynamicXYPlotActivity.java73 LineAndPointFormatter formatter1 = new LineAndPointFormatter( in onCreate()
80 LineAndPointFormatter formatter2 = in onCreate()
81 new LineAndPointFormatter(Color.rgb(0, 0, 200), null, null, null); in onCreate()
DDualScaleXYPlotExampleActivity.java33 import com.androidplot.xy.LineAndPointFormatter;
51 private LineAndPointFormatter series1Format, series2Format;
136 …series1Format = new LineAndPointFormatter(Color.rgb(0, 200, 0), Color.rgb(0, 100, 0), null, new Po… in onCreate()
137 …series2Format = new LineAndPointFormatter(Color.rgb(0, 0, 200), Color.rgb(0, 0, 100), null, new Po… in onCreate()
DListViewActivity.java30 import com.androidplot.xy.LineAndPointFormatter;
88 p.addSeries(series, new LineAndPointFormatter( in getView()
DStepChartExampleActivity.java69 LineAndPointFormatter series1Format = new LineAndPointFormatter( in onCreate()
DOrientationSensorExampleActivity.java113 new LineAndPointFormatter( in onCreate()
116 new LineAndPointFormatter( in onCreate()
119 new LineAndPointFormatter( in onCreate()
DXYPlotWithBgImgActivity.java55 LineAndPointFormatter lpFormat = new LineAndPointFormatter( in onCreate()
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/widget/
DDemoAppWidgetProvider.java27 import com.androidplot.xy.LineAndPointFormatter;
59 LineAndPointFormatter series1Format = new LineAndPointFormatter( in onUpdate()
69 new LineAndPointFormatter( in onUpdate()
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
DLineAndPointFormatter.java30 public class LineAndPointFormatter extends XYSeriesFormatter<XYRegionFormatter> { class
69 public LineAndPointFormatter() { in LineAndPointFormatter() method in LineAndPointFormatter
73 …public LineAndPointFormatter(Integer lineColor, Integer vertexColor, Integer fillColor, PointLabel… in LineAndPointFormatter() method in LineAndPointFormatter
77 …public LineAndPointFormatter(Integer lineColor, Integer vertexColor, Integer fillColor, PointLabel… in LineAndPointFormatter() method in LineAndPointFormatter
DLineAndPointRenderer.java31 public class LineAndPointRenderer<FormatterType extends LineAndPointFormatter> extends XYSeriesRend…
52 public void doDrawLegendIcon(Canvas canvas, RectF rect, LineAndPointFormatter formatter) { in doDrawLegendIcon()
79 …protected void drawSeries(Canvas canvas, RectF plotArea, XYSeries series, LineAndPointFormatter fo… in drawSeries()
155 …, RectF plotArea, Path path, PointF firstPoint, PointF lastPoint, LineAndPointFormatter formatter)… in renderPath()
DStepFormatter.java23 public class StepFormatter extends LineAndPointFormatter {
DBezierLineAndPointFormatter.java25 public class BezierLineAndPointFormatter extends LineAndPointFormatter {
DBarFormatter.java21 public class BarFormatter extends LineAndPointFormatter {
/external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/xy/
DXYPlotTest.java78 plot.addSeries(series1, new LineAndPointFormatter()); in testOriginFixedMode()
89 plot.addSeries(series1, new LineAndPointFormatter()); in testOriginAutoMode()
107 plot.addSeries(series1, new LineAndPointFormatter()); in testOriginGrowMode()
131 plot.addSeries(series1, new LineAndPointFormatter()); in testOriginShrinkMode()
150 plot.addSeries(series1, new LineAndPointFormatter()); in testsetDomainBoundaries()
234 plot.addSeries(series1, new LineAndPointFormatter()); in testsetRangeBoundaries()
317 plot.addSeries(series1, new LineAndPointFormatter()); in testSetDomainRightMinMax()
372 plot.addSeries(series1, new LineAndPointFormatter()); in testSetRangeTopBottomMinMax()
DXYLegendWidgetTest.java79 plot.addSeries(s1, new LineAndPointFormatter( in testDoOnDraw()