Hi John,
I'm having this issue for any chart I try to save as interactive, I'm using JMP pro 12
see example
dt = data table ("CE_Warn_RawData");
lst = dt << Bivariate(
Y( :value ),
X( :run_start_date ),
BY( :name, :window, :var, :stat),
SendToReport(
Dispatch( {}, "2", ScaleBox, {Add Ref Line( 0, "Dashed", "Black", "", 1 )} ),
Dispatch(
{},
"Bivar Plot",
FrameBox,
{Frame Size( 700, 200 ),Row Legend(
subentity,
Color( 1 ),
Color Theme( "JMP Default" ),
Marker( 1 ),
Marker Theme( "Standard" ),
Continuous Scale( 0 ),
Reverse Scale( 0 ),
Excluded Rows( 0 )
)}
)
)
);
lst << Journal();
Current Journal () << Save interactive HTML ("\\.....\RawData.html");
Thanks, Adam