Ejemplo n.º 1
0
 /**
  * ************************************************************** plot
  * **************************************************************
  */
 public int plot(float[] x, float[] y, String label, int color, int width, PathEffect effect) {
   Seria s = new Seria(x, y);
   s.mLabel = label;
   s.mColor = color;
   s.mWidth = width;
   s.mEffect = effect;
   mData.add(s);
   onDataChanged();
   return mData.size() - 1;
 }