PV-WAVE Advantage > JWAVE User Guide > Keyword and Named Color Parameters
Keyword and Named Color Parameters
Three categories of parameters described in this section:
Using These Parameters
Rogue Wave has provided, for your convenience, a set of JWAVE wrapper functions for use in graphics applications. These wrapper functions can be called from a JWAVE Java client application to generate most of the types of plots that are available in PV‑WAVE. These JWAVE wrappers include:
*JWAVE_BAR3D Function on page 194 — Produces a 3D bar chart.
*JWAVE_CONTOUR Function on page 195— Produces a contour plot.
*JWAVE_HISTOGRAM Function on page 198—Produces a histogram plot.
*JWAVE_PIE Function on page 202—Produces a pie chart.
*JWAVE_PLOT Function on page 204— Produces 2D plots.
*JWAVE_SURFACE Function on page 207—Produces surface plots.
This appendix describes the parameters that you can set in the Java client application for use by these JWAVE wrapper functions. In the Java client application, you set these parameters using methods such as:
JWaveExecute.setParam
JWaveView.setNamedColor
JwaveView.setNamedColorSet
For example, the following method sets a color parameter called Background in the Java client application:
myJWaveView.setNamedColor(”BACKGROUND”, Java.awt.Color.yellow) 
Then, in the JWAVE wrapper function, this color is retrieved with:
back = GET_NAMED_COLOR(”BACKGROUND”, Default=’000000’xL)
The Background parameter is commonly used to set the background color for plots. It is described on Background.