Topic: Drawing Graphical Elements
Presenters: @thickey1 and @jthi
Video 1:
Most of these different graphical objects/functions can be found in the scripting index under category Graphics:
-
- And scripting guide
GraphBox will return a reference to DisplayBox[OwnerBox] and FrameBox is somewhere under that
Names Default To Here(1);
New Window("Box Plot Seg Example",
g = Graph Box(
Frame Size(40, 180),
Y Scale(0, 5),
Box Plot Seg([1, 2, 3, 4])
)
);
You can also use Custom Maps to display the real coordinates. All the different methods do have their pros and cons.
Video 2: