This document describes the methods that are available in Perspective for Java. The methods in this guide are organized by category and functionality. Please see the Perspective for Java Programmer's Manual for an alphabetical list of methods. Each method in this guide is defined in the following format:
SYNTAX:
returnValue methodName (parameters);
INPUT:
Describes the input parameters (if any) required to call the method
RETURN:
Describes the return values (if any)
EXAMPLE:
// Example code that shows how to use each method (e.g.,
setAxisAssignment(getSeries(0), 0); setAxisAssignment(getSeries(1), 1); setAxisAssignment(getSeries(2), 2); setAxisAssignment(getSeries(3), 2); setAxisOffset(getY1Axis(), 0); setAxisOffset(getY2Axis(), 20); setAxisOffset(getY3Axis(), 75); setAxisSize(getY1Axis(), 20); setAxisSize(getY2Axis(), 55); setAxisSize(getY3Axis(), 25); setGraphType(103); setDepthRadius(0); setY1TitleString("Y1 Axis"); setY2TitleString("Y2 Axis"); setTextString(getY3Title(), "Y3 Axis");
NOTES:
Describes any special considerations for using each method.
ALSO SEE:
Lists other methods and properties that may be related.