Library /sys$common/syshlp/basichelp.hlb Graphics, SET Statements, ...STYLE *Conan The Librarian (sorry for the slow response - running on an old VAX) |
The SET...STYLE statements let you specify your choice of style for a particular graphics object, such as the form of a line or the marker for a point. At the start of program execution, lines and areas are solid and points are represented by asterisks. Example PROGRAM Demo OPTION TYPE = EXPLICIT DECLARE LONG point_style, line_style FOR point_style = 1 TO 5 SET POINT STYLE point_style GRAPH POINTS point_style/10,0.8 NEXT point_style FOR line_style = 1 TO 4 SET LINE STYLE line_style GRAPH LINES 0,line_style/10; & 1,line_style/10 NEXT line_style END PROGRAM
Additional Information (explode) :
|