Suppose I have two Graph Builder windows from different data tables, each with a Local Data Filter filtering on "run number" and "time".
Is it possible to connect the two Local Data Filters so they stay in sync?
Or perhaps with JSL to pull the current settings from Local Data Filter #1 and apply them to Local Data Filter #2?
(I guess step 1 is getting a reference to the Local Data Filters, I haven't even figured out how to do that yet -- here's what I have so far:
// get the last Graph Builder
win = Get Window List();
graphs = Filter Each({w}, win,
If(Length(w << XPath("//OutlineBox[@helpKey='Graph Builder']")) > 0, 1, 0)
);
last_gb = graphs[N Items(graphs)][OutlineBox("Graph Builder")] << Get Scriptable Object;
localDataFilter = last_gb << XPath("//OutlineBox[text()='Local Data Filter']");
)