Graphic option
points_joined
Default value: false
If points_joined
is true
, points are joined by lines.
This option affects the following graphic objects:
gr2d
: points
.
gr3d
: points
.
Example:
(%i1) load(draw)$ (%i2) draw2d(xrange = [0,10], yrange = [0,4], point_size = 3, point_type = up_triangle, color = blue, points([[1,1],[5,1],[9,1]]), points_joined = true, point_type = square, line_type = dots, points([[1,2],[5,2],[9,2]]), point_type = circle, color = red, line_width = 7, points([[1,3],[5,3],[9,3]]) )$