XYZSetLabelTypeIsolinesΒΆ
XYZSetLabelTypeIsolines specifies how the isoline labels are placed in the dataset.
- bool = XYZSetLabelTypeIsolines(hData, nLabelType)
Return Value
If the function succeeds, the return value bool is TRUE (1) otherwise it is FALSE (0).
Parameters
- hData
A handle for a dataset created with XYZCreate or XYZCreateFromMatrix.
- nLabelType
nLabelType is one of the following values:
LABEL_TYPE_NONE (0) |
No label will be inserted. |
LABEL_TYPE_USER (1) |
Label will be inserted manually by the user. |
LABEL_TYPE_STRIPES (2) |
Label will be insert along three invisible vertical lines. |
LABEL_TYPE_MIDDLE (3) |
Each isoline will be labeled in the middle of the line. |
LABEL_TYPE_RANDOM (4) |
Like LABEL_TYPE_MIDDLE but the label will be inserted randomly. |
LABEL_TYPE_AUTO (4) |
Like LABEL_TYPE_RANDOM. |
See also
id-1856419