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
770
how to resolve Gauges Overlaping
posted

HI

 I am plcaing two gauges in a form. but the gauges are overlaping.  how to avoid that.  Backgournd color is   'Transperant' for both bagues, 

pls help

 

 

 

 

 

 

Parents
No Data
Reply
  • 28496
    Offline posted

     it works fine for me, using the following code...

     note that this will not work in IE6, since that browser does not support PNG transparency.

    <igGauge:UltraGauge ID="UltraGauge1" runat="server" style="position: absolute; left: 10px; top: 10px">
        <Gauges>
        <igGaugeProp:RadialGauge>
            <Dial>
            <BrushElements>
            <igGaugeProp:SolidFillBrushElement Color="Red" />
            </BrushElements>
            </Dial>
        </igGaugeProp:RadialGauge>
        </Gauges>
        </igGauge:UltraGauge>
        <igGauge:UltraGauge ID="UltraGauge2" runat="server" style="position: absolute; left: 20px; top: 20px">
        <Gauges>
        <igGaugeProp:RadialGauge>
            <Dial>
            <BrushElements>
            <igGaugeProp:SolidFillBrushElement Color="Blue" />
            </BrushElements>
            </Dial>
        </igGaugeProp:RadialGauge>
        </Gauges>
        </igGauge:UltraGauge>

Children