JSL to Set Graph Y axis Max Value based on Cell Value
I am plotting graph and add refence line. I would like the reference line and Y max axis value can be seen on the graph. I am trying to set the Y axis max value based on the max cell value. I do not see the Y max appear in the graph.Below is my script. Can anyone advise what wrong with the script?dt= Current Data Table();
MX = Max(:Weight);
If(
MX < 80,
MX = 90;
MX = MX + 10
);
dt ...
jay_holavarri