cgoodman:What would the C# code be to set the value
Assuming your UltraGauge is named gauge, something along the lines of the following would set all Gauges in a Gauge:
foreach (Infragistics.UltraGauge.Resources.Gauge g in gauge.Gauges) {
if (g is Infragistics.UltraGauge.Resources.RadialGauge) {
Infragistics.UltraGauge.Resources.RadialGauge rg = (Infragistics.UltraGauge.Resources.RadialGauge)g;
rg.Scales[0].Markers[0].Value = value;
} // if radial
} // foreach gauge
---------------------------
In other words, it's buried pretty far down which is probably the real reason data binding isn't supported.