save()

This method saves a graph to an output stream. It will save all of the properties and methods required to recreate the graph in ASCII text file format. The contents of the file can be viewed or edited with any text editor.

Syntax:

void save(java.io.OutputStream os);
void save(
    java.io.OutputStream os,
    String ChartObjectName);

where:

os

Is a Java output stream.

ChartObjectName

Is a graph object name.

Return: void;


WebFOCUS