Generates a Flash movie, a JPEG image or a PNG image from a chart object and writes it into the Response intrinsic object.
object.ExportAsResponse
This method should be used within an ASP environment with the Response object provided by the web server. The method actually:
The output file format (i.e. Flash movie, JPEG image or PNG image) is defined by the method SetOutputFormat.
The following VBScript code illustrates use of the ExportAsResponse method.
'Create the chart series Dim values_1(2) Dim values_2(2) values_1(0) = 10 values_1(1) = 20 values_1(2) = 30 values_2(0) = 100 values_2(1) = 200 values_2(2) = 300 chart.AddSeries chart.SetSeriesValuesFromArray 0, values_1 chart.AddSeries chart.SetSeriesValuesFromArray 1, values_2 'Set the graphics settings from a style file chart.LoadStyle "C:\myStyle.scs" 'The chart is complete, we can now write the Flash movie into the response object chart.ExportAsResponse
ExportAsFile Method | ExportAsBinary Method | SetOutputFormat Method
Applies To: Chart Object