Hi folks, I'm trying to build a data dashboard from multiple graphs. In the output windows, there are a few different graphs that I'm pulling from different scripts. One of them I need to add in local data filter in th graph. Here is how I'm doing it currently:
1. in the graph A script, I'm putting it as
G_graph_A = Outline Box ("Graph A",
DT << Contour Plot(
X( x, y ),
Y( Value ),
Local Data filter ( Add Filter( columns(filterA, filterB),
Display( filterA, Size( 112, 530 ), Check Box Display ),
Display( filterB, Size( 144, 926 ), Check Box Display )))
));
2. in output window script, I'm writing it as:
REPORT_WINDOW = New Window( "DATA",
Tab Box("DATA",
V List Box( DATE, G_graph_A, G_graph_B)
));
However in the output window, only graph is showing and graph A local data filter is not showing. Could you please help to take a look at what might have go wrong?
Also, I'm wondering how I could generate another tab box separately for G_graph_B?
Thank you very much for the help!