Hi,
I am using Ultra Gauge in my asp.net application. I have to assign the dynamic "SetEndValue". If this value is very large then then numbers on the gauge become very small and unable to read. To overcome this issue I set "SetTickmarkInterval = SetEndValue/6". This solved the problem, but if "SetEndValue= 2000 then SetTickmarkInterval = SetEndValue/6 = 333.33" and MaxValue shown on gauge will be "1998".
Please let me know how to show the proper MaxValue on the gauge.
Thanks
it looks like your interval is getting cast to an int, 333. try SetEndValue / 6.0 to ensure that the calculation is based on System.Double values.