DataObject.GetMarkerOutlineColor

Prototypes

void GetMarkerOutlineColor( Matrix mColor )

Parameters

Matrix mColor
Upon return, contains a numeric column vector in which mColor[i] is the color used to outline the marker that represents observation i in a plot.

Remarks

This method retrieves the colors used to outline the markers that represent observations in plots. For information about color values, see DataObject.SetMarkerOutlineColor.

Example
declare DataObject dobj;
dobj = DataObject.Create( "Example" );
x = 1:3;
y = 1:3;
dobj.AddVar( "X", x );
dobj.AddVar( "Y", y );
dobj.SetMarkerOutlineColor( 1, RED );
dobj.SetMarkerOutlineColor( 2, GREEN );
dobj.SetMarkerOutlineColor( 3, BLUE );
declare ScatterPlot plot;
plot = ScatterPlot.Create( dobj, "X", "Y" );
plot.SetMarkerSize( 8 );
dobj.GetMarkerOutlineColor( m );
print m[format=hex8.];
See Also

DataObject.GetMarkerFillColor
DataObject.SetMarkerOutlineColor