Changing the scales of a graph box
Hi I am wirking on a custom graph. I want to draw the graph similar to this:nw = New Window("Test",
Outline Box( "Outline",
gb = Graph Box(
FrameSize( 600, 300),
XName("X axis"),
YName("Y axis"),
X Scale( 0, 5*Pi() ),
Y Scale( -1, 1 )
)
)
);gb << Set Graphics Script(Y Function(Sin(x), x)); Now I want to change the scales of the graph. I can drag to change the size and scale of the graph, but how do I change...
