save report as interactive html
Hi, I want to save a report including multiple Graph Builders as an interactive html. This is what I am doing:a_plot=Report(Graph Builder(...));
b_plot=Report(Graph Builder(...));
c_plot=Report(Graph Builder(...));
new_window = New Window( "NW", hlb = H List Box() );
hlb << append(
V List Box(
a_plot,
b_plot,
c_plot
);
new_window << save interactive html("my_plots".htm");
It work...