Hi all,
I am using JMP application for plotting a test result. I am using the below script lines to set values to the graph,
Results1 << Set Title ("WFM");
Result Graph << Set X Axis ({Min(0), Max(Res_x_max), Format("Best", 9)});
Result Graph << Set Y Axis ({Min(Res_y_max), Max(Res_y_min), Format("Best", 9)});
Result Graph << Set Graphics Script (Marker (Res_x,Res_y));
My problem is I want to update the X and Y axis labels whenever I launch the the module. I don't know how to set axis labels and its orientation. Please help me with this