Retrieves the frame rate in frames per second of the Flash movie generated from a chart object.
int object->GetFrameRate( )
The GetFrameRate method returns an integer value that identifies the final frame rate in frames per second of the Flash movie generated from a chart object (see ExportAsResponse Method and ExportAsFile Method for generating a Flash movie).
Loading a chart style with the LoadStyle method sets the frame rate to the value stored in the style file.
This method only applies to Flash movies generation.
The following PHP code illustrates use of the GetFrameRate method.
$chart->SetDataFromQuery(); $chart->LoadStyle("C:\\myStyle.scs"); // Retrieve movie frame rate set by the call of LoadStyle method $fps= $chart->GetFrameRate(); // We want a movie with a minimum frame rate of 12 frames per second if( $fps < 12 ) $chart->SetFrameRate(12); $chart->ExportAsResponse();
SetFrameRate Method | GetTitle Method | GetSubtitle Method | GetWidth Method | GetHeight Method
Applies To: Chart Object