Any Advice: Fill Color not working in Graph Box?
Good morning,for some reason the rectangles in this Graph Box are not filling with specified color. Perhaps it is something simple that I am missing:new Window("Test",
H List Box(
g0 = Graph Box(
Frame Size(50, 500),
Y Scale(-1, 6),
X Scale(0, 6),
Fill Color("Green");
Rect(0, 1.1, 6, 0);
Fill Color("Yellow");
Rect(0, 1.6, 6, 1.1);
Fill Color("Orange");
Rect(0, 1.8, 6, 1
...