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

Namespace:  C1.Web.UI.Controls.C1Gauge
Assembly:  C1.Web.UI.Controls.3 (in C1.Web.UI.Controls.3.dll)

Syntax

C#
public enum ImageRenderMethod
Visual Basic (Declaration)
Public Enumeration ImageRenderMethod

Members

Member nameDescription
File C1Gauge 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 C1Gauge 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 C1Gauge 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 C1Gauge 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 C1Gauge 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