Specifies whether the generated content (SVG or Flash) should be compressed or not.
void object.SetCompressed( boolean compressed )
This option only applies to SVG or Flash generated content.
Default: the generated content is not compressed.
Note: Flash Player 6 or higher is required for playing back a compressed Flash movie.
The following JSP code illustrates use of the SetCompressed method in a JSP page.
chart.SetDataFromTxtFile("C:\\myData.txt");
chart.LoadStyle( "C:\\myStyle.scs" );
// Let's display an compressed SWF movie
chart.SetCompressed( true );
chart.ExportAsResponse();
Applies To: Chart Object