Hi Brendon,
The blacked out area is a reference range on the X axis with an opacity of 0.
JMP treats this as completely transparent, but due to a bug in our Interactive HTML export, an opacity setting of exactly 0 is ignored causing the reference range to draw completely opaque.
I see a couple of options for anyone running into this issue until the bug is fixed.
1. Remove the reference area.
2. Use an opacity value of 0.0001.
In the script of the .jrp file you provided, the last parameter of the Add Ref Line function is the opacity set to 0.0001.
New Window( "Data Filter for Data Table",
V List Box(
Bivariate(
Y( :WO % Complete ),
X( :Name( "% of Lead Time" ) ),
SendToReport(
Dispatch(
{},
"1",
ScaleBox,
{Scale( "Log" ), Format( "Percent", 12, 0 ),
Min( 0.0195073348627051 ), Max( 60.1773644765953 ), Inc( 1 ),
Minor Ticks( 1 ), Add Ref Line(
{0, 1},
"Solid",
"Black",
"",
1,
0.0001
)}
),
I hope this helps.
~John