Plot.SetMarkerSize

Prototypes

void SetMarkerSize( int nSize )

Parameters

int nSize
The size of the markers used to represent observations in a plot. This parameter must be in the range 1 to 8.

Remarks

This method sets the size of the markers used to represent observations in the plot. Calls to this method are ignored by the BarChart, Histogram, or MosaicPlot classes because those plots do not display markers for individual observations.

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.SetMarkerSize( 8 );