Previous topic

XYSetErrorbarConfig

Next topic

XYSetFilterFunctions

This Page

XYSetFillColorΒΆ

XYSetFillColor sets the fill color for the area under the curve.

bool = XYSetFillColor(hData, rvColorRGB)

Return Value

If the function succeeds, the return value bool is TRUE (1); otherwise it is FALSE (0).

Parameters

hData

The handle of a dataset created with XYCreate or TYCreate.

rvColorRGB

rvColorRGB is a vector with 3 elements:

Value Meaning
rvColorRGB[1] Red (0-255)
rvColorRGB[2] Green (0-255)
rvColorRGB[3] Blue (0-255)

Example

* XYSetFillColor(hData, [255, 255, 0])
* XYShowFill(hData, TRUE)

id-516122