/usr/share/freemat/help/text/lineproperties.mdc is in freemat-help 4.0-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | LINEPROPERTIES LINEPROPERTIES Line Series Object Properties
Usage
Below is a summary of the properties for a line series.
- color - colorspec - The color that is used to
draw the line.
- children - Not used.
- displayname - The name of this line series as it
appears in a legend.
- linestyle - {'-','--',':','-.','none'} - The style of the line.
- linewidth - scalar - The width of the line.
- marker - {'+','o','*','.','x','square','s','diamond','d','^','v','>','<'} -
The marker for data points on the line. Some of these are redundant, as 'square'
's' are synonyms, and 'diamond' and 'd' are also synonyms.
- markeredgecolor - colorspec - The color used to draw the marker. For some
of the markers (circle, square, etc.) there are two colors used to draw the marker.
This property controls the edge color (which for unfilled markers) is the primary
color of the marker.
- markerfacecolor - colorspec - The color used to fill the marker. For some
of the markers (circle, square, etc.) there are two colors used to fill the marker.
- markersize - scalar - Control the size of the marker. Defaults to 6, which
is effectively the radius (in pixels) of the markers.
- parent - handle - The axis that contains this object.
- tag - string - A string that can be used to tag the object.
- type - string - Returns the string 'line'.
- visible - {'on','off'} - Controls visibility of the the line.
- xdata - vector - Vector of x coordinates of points on the line. Must be
the same size as the ydata and zdata vectors.
- ydata - vector - Vector of y coordinates of points on the line. Must be
the same size as the xdata and zdata vectors.
- zdata - vector - Vector of z coordinates of points on the line. Must be
the same size as the xdata and ydata vectors.
- xdatamode - {'auto','manual'} - When set to 'auto' FreeMat will autogenerate
the x coordinates for the points on the line. These values will be 1,..,N where
N is the number of points in the line.
- userdata - array - Available to store any variable you
want in the handle object.
|