Use the members of this enumeration to set the value of the 
            ImageRenderMethod property
            in the C1WebChart class.
            
        
    Namespace: 
   C1.Web.C1WebChartAssembly: C1.Web.C1WebChart.2 (in C1.Web.C1WebChart.2.dll)
Syntax
| C# | 
|---|
public enum ImageRenderMethodEnum  | 
| Visual Basic | 
|---|
Public Enumeration ImageRenderMethodEnum  | 
Members
| Member name | Value | Description | |
|---|---|---|---|
| File | 0 | 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. | |
| HttpHandler | 1 | 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. | |
| BinaryWrite | 2 | 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. | |
| AspPage | 3 | 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. | |
| Manual | 4 | 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. |