Hi,
I have tried using following code, but somehow it is not working...
private void radialGauge3_ValueChanged(object sender, EventArgs e)
{
//double StartValue = -999;
//double EndValue = 999;
if (integerTextBox1.IntegerValue > radialGauge1.MinimumValue)
{
radialGauge1.Ranges(0).StartValue = integerTextBox1.IntegerValue;
}
else
{
return;
}
if (integerTextBox1.IntegerValue < radialGauge1.MaximumValue)
{
radialGauge1.Ranges(0).EndValue = integerTextBox1.IntegerValue;
}
else
{
return;
}
}