Topics

Forum Topics not found

Replies

ctid9231468
02 Apr 2025, 13:23 ( Updated at: 03 Apr 2025, 05:37 )

In a custom Plugin you can access all charts and retrieve a list of all open charts (frames) like this:

foreach (var chart in ChartManager)
{
    Print("chart: " + chart.Id);
}

@ctid9231468