Plot.GetGraphAreaBackgroundColor

Prototypes

int GetGraphAreaBackgroundColor()

Return Value

The return value is the background color of the Graph Area in RGB integer form. This integer color value has the hexadecimal form 00rrggbbX, where rr specifies the color's red component (00–FF hexadecimal), gg specifies the color's green component (00–FF hexadecimal), and bb specifies the color's blue component (00–FF hexadecimal).

Parameters

None

Remarks

This method returns the background color of the plot's Graph Area.

Example
declare DataObject dobj;
dobj = DataObject.CreateFromFile( "baseball" );
declare ScatterPlot plot;
plot = ScatterPlot.Create( dobj, "no_hits", "no_home" );
color = plot.GetGraphAreaBackgroundColor();
print color[format=hex8.];
See Also

Plot.GetPlotAreaBackgroundColor