Coloring of contour interior area

I have successfully made a contour plot from a matrix. The level traces are colored in a nice way, but I'd like the background to have colors according to the region in which it lies. For example, the area between level 2 & 3 would be in red, etc.
Hi,

Create an image wave with the density of points you want and set the scaling and then use ContourZ to give the values to that new wave.

ContourZ(graphNameStr, contourNameStr, instance, x, y [,pointFindingTolerance] )
The ContourZ function returns the interpolated Z value of the named contour plot data displayed in the named graph.

Then append the image to your graph.
If there's a color table that meets your needs, then simply using Graph->Packages->Fill Between Contours would do the trick.

--Jim Prouty
Software Engineer, WaveMetrics, Inc.
JimProuty wrote:
If there's a color table that meets your needs, then simply using Graph->Packages->Fill Between Contours would do the trick.

--Jim Prouty
Software Engineer, WaveMetrics, Inc.

Perfect.