Keyword and Named Color Parameters

Three categories of parameters described in this section:

Keyword Parameters

Named Color Parameters

Named ColorSet Parameters

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    — Produces a 3D bar chart.

JWAVE_CONTOUR Function  — Produces a contour plot.

JWAVE_HISTOGRAM Function   —Produces a histogram plot.

JWAVE_PIE Function   —Produces a pie chart.

JWAVE_PLOT Function   — Produces 2D plots.

JWAVE_SURFACE Function   —Produces surface plots.

They are described in JWAVE Convenience Wrappers .

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 .