Exporting the Digital Gauge

1 Oct 20151 minute to read

Digital Gauge has an exporting feature where Gauge control is converted into image format and then exported to client-side. The method API exportImage exports the Digital Gauge. It has two arguments such as filename and file format. For exporting, you can refer the following code example.

  • HTML
  • <%-- Adding Digital Gauge control --%>
    
    <ej:DigitalGauge runat="server" ID="DigitalGauge1" Value="Syncfusion">
    
    
    
    </ej:DigitalGauge>
    
    <script>
    
    $("# DigitalGauge1").ejDigitalGauge("exportImage", "Digital", "PNG");
    
    <script/>

    Execute the above code examples to render the DigitalGauge as follows.

    Digital Gauge control with Export functionality