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.6);
Fill Color("Red");
Rect(0, 5.9, 6, 1.8);
),
g1 = 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.6);
Fill Color("Red");
Rect(0, 5.9, 6, 1.8);
),
g2 = 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.6);
Fill Color("Red");
Rect(0, 5.9, 6, 1.8);
),
g3 = 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.6);
Fill Color("Red");
Rect(0, 5.9, 6, 1.8);
),
),
);
g0[Axis Box(1)]<< Delete;
g1[Axis Box(1)]<< Delete;
g2[Axis Box(1)]<< Delete;
g3[Axis Box(1)]<< Delete;
Thanks in Advance!
MG