Specifies the width in pixels of the Flash movie generated from a chart object.

void object->SetWidth( int width )

Arguments

object
Required. A Chart object.
width
Required. An integer value that specifies the width in pixels of the Flash movie.

Remarks

The SetWidth method specifies the width in pixels of the final Flash movie generated from a chart object (see ExportAsResponse Method and ExportAsFile Method for generating a Flash movie).

Loading chart graphical settings from a style file via the method LoadStyle sets the width and height of the resulting Flash movie with the width and height values stored in the settings file.

PHP Sample Code

The following PHP code illustrates use of the SetWidth method.

$chart->SetSeparators(";", true);
$chart->SetDataFromQuery();
$chart->LoadStyle("C:\\myStyle.scs");

// Retrieve movie Width and Height set by the call of LoadStyle method 
$w= $chart->GetWidth();
$h= $chart->GetHeight(); 

// Now scale the movie by 2 
$chart->SetWidth(2 * $w);
$chart->SetHeight(2 * $h);

$chart->ExportAsResponse();

See Also

GetWidth Method | SetTitle Method | SetSubtitle Method | SetHeight Method | SetFrameRate Method

Applies To: Chart Object