Use the members of this enumeration to set the value of the ImageRenderMethod property in the C1WebChart class.

Namespace:  C1.Web.C1WebChart
Assembly:  C1.Web.C1WebChart.2 (in C1.Web.C1WebChart.2.dll)

Syntax

C#
public enum ImageRenderMethodEnum
Visual Basic
Public Enumeration ImageRenderMethodEnum

Members

Member nameValueDescription
File0 C1WebChart will generate image files that can be referenced directly by an <IMG> tag. The <IMG> tag will be generated and will reference the file specified by the ImageUri property. If the ImageUri property is not specified, then a name for the temporary file will be generated and the URL will reference the temporary file.
HttpHandler1 C1WebChart supports the IHTTPHandler interface and will generate an appropriately placed <IMG> tag within the page that references its internal HTTPHandler to stream the image to the client.
BinaryWrite2 C1WebChart will perform a binary write to its host page response stream directly, without transferring data to another page. However, the binary image data will be the only data returned.
AspPage3 C1WebChart will utilize a secondary asp(x) page to stream the image data back to an imbedded <IMG> tag on the primary page. If this option is selected, the chart will generate an appropriately placed <IMG> tag within the page that hosts the chart. The positioning of the <IMG> tag will be in the same location as shown on the Visual Studio design page, and <IMG> tag src attribute will reference the specified asp(x) page. The path to the page will be that specified by the ImageUri property.
Manual4 C1WebChart does nothing to render itself at runtime. All operations required for generating and placing the chart image within the page are the responsibility of the programmer.

See Also