If this is the form of the graph that you want
Here is the JSL that produces the above graph
Names Default To Here( 1 );
Data Table( "Weight Checks for JP" ) << Bivariate(
Y( :Value ),
X( :CreatedDateTime ),
Where(
:ValueName == "Dispense Weight Chec" & :Site == "SAN" & :ProcessName ==
"CLOUE Unload Station" & :EQNumber == "EQ-902280-001"
),
SendToReport(
Dispatch(
{},
"CreatedDateTime",
ScaleBox,
{Label Row( Label Orientation( "Angled" ) )}
),
Dispatch( {}, "Bivar Plot", FrameBox, {Frame Size( 910, 194 )} )
)
);
BivR = Current Report()[Outline Box( 1 ), AxisBox( 2 )];
For( i = 1, i <= N Rows( Data Table( "Bottle Change Data" ) ), i++,
BivR << Add Ref Line(
Informat( Data Table( "Bottle Change Data" ):Date_Time[i], "m/d/y h:m" ),
"Solid",
"Black",
Data Table( "Bottle Change Data" ):Description[i] || " " ||
Data Table( "Bottle Change Data" ):Part_Number[i],
1
)
);
Please use the <JSL> icon at the top of the Discussion Entry area when you are entering JSL. It makes the reading of the code much easier
Jim