Hi, you have introduced a new parameter in StartGraph method named autoUpdate. What does this paramaeter do and what are the effect of true and false? Thanks!
This parameter is there to tell if the graph should be automatically updated or manually updated.
So if you pass true, the graph will automatically update and you would have nothing more to worry about. This is actually what was happening up until now. So, true is the default.
If you pass false, then you will have to manually update the graph, by calling it’s UpdateGraph() method.
Once again, the default and recommended, is to pass true for the autoUpdate parameter when you start a graph.