StickGraph Command

From GeoGebra Manual
Jump to: navigation, search


StickGraph( <List of Points> )
Draws a stick graph of the given points. For each point a vertical line segment is drawn from the x-axis to the point.
Example: StickGraph({(1, 1), (3, 2), (4, 5), (5, 7)})
StickGraph( <List of Points>, <Boolean Horizontal> )
Draws a stick graph of the given points. If Horizontal = true, then horizontal line segments are drawn from the y-axis to each point. If Horizontal = false, then vertical line segments are drawn from the x-axis to each point.
Example: StickGraph({(1, 1), (3, 2), (4, 5), (5, 7)}, false)
StickGraph( <List of x-coordinates>, <List of y-coordinates> )
Draws a stick graph of points created from the two lists of coordinates. For each point a vertical line segment is drawn from the x-axis to the point.
Example: StickGraph({1, 3, 4, 5}, {1, 2, 5, 7})
StickGraph( <List of x-coordinates>, <List of y-coordinates>, <Boolean Horizontal> )
Draws a stick graph of points created from the two lists of coordinates. If Horizontal = true, then horizontal line segments are drawn from the y-axis to each point. If Horizontal = false, then vertical line segments are drawn from the x-axis to each point.
Example: StickGraph({1, 3, 4, 5}, {1, 2, 5, 7}, true)
© 2024 International GeoGebra Institute