Ejemplo n.º 1
0
 internal InterpolatedPoint(double x, double y, int nearestRefPoint, DisplayedGraph graph)
 {
     _X = x;
     _Y = y;
     _NearestRefPoint = nearestRefPoint;
     _Graph = graph;
 }
Ejemplo n.º 2
0
 public void RemoveGraph(DisplayedGraph graph)
 {
     _Graphs.Remove(graph);
     UpdateScaling();
     Invalidate();
     UpdateLegend();
 }
Ejemplo n.º 3
0
 internal DisplayedPoint(DisplayedGraph gr, int index)
 {
     _Graph = gr;
     _PointIndex = index;
 }
Ejemplo n.º 4
0
 public DisplayedGraph AddGraph(Graph graph, Color color, int lineWidth, string hint)
 {
     DisplayedGraph gr = new DisplayedGraph(this, graph, color, lineWidth, hint);
     _Graphs.Add(gr);
     UpdateScaling();
     Invalidate();
     UpdateLegend();
     return gr;
 }