ContourPlot.SetContourWidth

Prototypes

void SetContourWidth ( <int nLevelNum,> int nWidth )

Parameters

int nLevelNum
The number (1-based) of the level whose width you want to set. If you do not specify the nLevelNum parameter, the method sets the width of all the contour lines.

int nWidth
The width of the contour lines.

Remarks

This method sets the width of the contour lines associated with the specified level.

Example
x = { 0 10 10  0 1 9 9 1 2 8 8 2 3 7 7 3 4 6 6 4 5 };
y = { 0  0 10 10 1 1 9 9 2 2 8 8 3 3 7 7 4 4 6 6 5 };
z = { 0  0  0  0 1 1 1 1 2 2 2 2 3 3 3 3 4 4 4 4 5 };
declare ContourPlot plot;
plot = ContourPlot.Create( "Pyramid", x, y, z );
plot.SetContourWidth( 3, 5 );
See Also

ContourPlot.SetContourColor
ContourPlot.SetContourStyle