예제 #1
0
 public void Dispose()
 {
     if (_options == null || !_options.NoClear)
     {
         _graph?.ClearDisplay();
     }
     _graph?.Dispose();
 }
예제 #2
0
 public void Dispose()
 {
     if (_config == null || !_config.Global.NoClear)
     {
         _graph?.ClearDisplay();
     }
     _graph?.Dispose();
 }
 public void ClearDisplay()
 {
     if (_renderer != null)
     {
         _renderer.ClearDisplay();
     }
     else
     {
         _graphs.ForEach(graph => graph.ClearDisplay());
     }
 }