Category: Software
-
Dundas Gauge – Setting pointer values
I was having trouble getting Dundas Gauge for ASP.NET to reflect the value that I was assigning it. For some reason, the needle always pointed to the default 0. I was using this code: //create circular gauge GaugeContainer gauge = new GaugeContainer(); CircularGauge circleGauge = new CircularGauge(); gauge.CircularGauges.Add(circleGauge); //scale CircularScale scale = new CircularScale(); scale.Minimum…