Ejemplo n.º 1
0
 public static void DrawPolyLine(PriceGraphicArgs args, List <PricePoint> points)
 {
     //for (int i = 1; i < values.Length; i++)
     //{
     //    double lastvalue = values[i - 1];
     //    //if (lastvalue == 0)
     //    //    continue;
     //    Point lastPoint = new Point((int)CalcX(i - 1), (int)CalcY(lastvalue));
     //    Point point = new Point((int)CalcX(i), (int)CalcY(values[i]));
     //    g.DrawLine(pen, lastPoint, point);
     //}
 }
Ejemplo n.º 2
0
 public static void DrawLine(PriceGraphicArgs args, List <PricePoint> points)
 {
 }