Plot.SetReferenceLineColor

Prototypes

void SetReferenceLineColor( int nColor )

void SetReferenceLineColor( int nRed, int nGreen, int nBlue )

Parameters

int nColor
A predefined constant specifying the desired color. The valid values are BLACK, BLUE, BROWN, CHARCOAL, CREAM, CYAN, GOLD, GRAY, GREY, GREEN, LILAC, LIME, MAGENTA, MAROON, OLIVE, ORANGE, PINK, PURPLE, RED, ROSE, SALMON, STEEL, TAN, VIOLET, WHITE, and YELLOW.

int nRed, nGreen, nBlue
An RGB specification of the desired color. Each parameter must be an integer in the range [0, 255]. Examples: the triplet (0, 0, 0) represents black; the triplet (255, 255, 255) represents white.

Remarks

Reference lines are vertical or horizontal lines emanating from major tick marks. They can be used to superimpose a grid on the Plot Area.

This method sets the color of the reference lines.

Example
x = { 1 2 3 4 5 6 7 8 };
y = { 2 1 4 5 6 5 6 9 };
declare ScatterPlot plot = ScatterPlot.Create( "Sample Data", x, y );
plot.ShowReferenceLines();
plot.SetReferenceLineColor( CYAN );
See Also

Plot.SetReferenceLineStyle
Plot.SetReferenceLineWidth
Plot.ShowReferenceLines