Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
975
Radial Gauge on clickevent
posted

I do not see an onclick event for the radial gauge.

Anyone give me advice on best way to pop up webdialog on gauge click?

 

Thanks

  • 28496
    Suggested Answer
    Offline posted

    use ClientSideEvents.Click  ...

     

    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title></title>

        <script type="text/javascript" id="igClientScript">
    <!--

    function UltraGauge1_Click(oGauge,oEvent,x,y){
        alert ("hello");
    }
    // -->
    </script>
    </head>
    <body>
        <form id="form1" runat="server">
        <div>
       
            <igGauge:UltraGauge ID="UltraGauge1" runat="server">
                <ClientSideEvents Click="UltraGauge1_Click" />
            </igGauge:UltraGauge>
       
        </div>
        </form>
    </body>
    </html>