public RealTimeGraphDataInterface(GraphDataManager manager)
 {
     Manager = manager;
 }
 public void CopyGraphsFrom(GraphDataManager other)
 {
     graphs.AddRange(other.graphs);
     updatingFunctions.AddFunctions(other.updatingFunctions);
 }