| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
3.8 Legend
These functions draw legend to the graph (useful for 1D plotting). Legend entry is a pair of strings: one for style of the line, another one with description text (with included LaTeX parsing). The array of string may be used directly or by accumulating first to the internal arrays (by function AddLegend()) and further plotting it. The position of the legend can be selected automatic or manually. Parameters font and size specify the font style and size (see section Font settings). Parameter llen set the relative width of the line sample and the text indent. If line style string for entry is empty then the corresponding text is printed without indent. See section Legend sample, for sample code and picture.
- Method on mglGraph:
voidLegend (intwhere=0x3,const char *font="rL",floatsize=-0.8,floatllen=0.1) Draws legend of accumulated legend entries by font font with size. Parameter where sets the position of the legend: ‘0’ is bottom left corner, ‘1’ is bottom right corner, ‘2’ is top left corner, ‘3’ is top right corner (is default).
- Method on mglGraph:
voidLegend (intn,wchar_t **text,char **style,intwhere=0x3,const char *font="rL",floatsize=-0.8,floatllen=0.1) Draws legend with n-th elements of string array text by font font with size. Entry strings text describe curves with line style style (including marks). Parameter where sets the position of the legend: ‘0’ is bottom left corner, ‘1’ is bottom right corner, ‘2’ is top left corner, ‘3’ is top right corner (is default).
- Method on mglGraph:
voidLegend (floatx,floaty,const char *font="rL",floatsize=-0.8,floatllen=0.1) Draws legend of accumulated legend entries by font font with size. Position of legend is determined by parameter x, y which supposed to be normalized to interval [0,1].
- Method on mglGraph:
voidLegend (intn,wchar_t **text,char **style,floatx,floaty,const char *font="rL",floatsize=-0.8,floatllen=0.1) Draws legend with n-th elements of string array text by font font with size. Entry strings text describe curves with line style style (including marks). Position of legend is determined by parameter x, y which supposed to be normalized to interval [0,1].
- Method on mglGraph:
voidAddLegend (const char *text,const char *style) - Method on mglGraph:
voidAddLegend (const wchar_t *text,const char *style) Adds string text to internal legend accumulator. The style of described line and mark is specified in string style (see section Line styles). Maximal number of entries is 100.
- General option of mglGraph:
boolLegendBox Switch on/off drawing box near legend. By default (=
true) box is drawn.
| [ < ] | [ > ] | [ << ] | [ Up ] | [ >> ] | [Top] | [Contents] | [Index] | [ ? ] |
