hello.
im new to this product, and am now evaluation it.
is there a guide or some other document that explaines basics on how to:
Create a guage
connect gauge to DB
use as real time guage
same goes for charts,
i havnt been able to find anything at the documentaions.
thanks for any help
hi.
i dont think we understand each other...
i know how to use the desinger..
the very first example i posted was from that.
the problem is that when i use a gauge made by the desinger - it generates code at the aspx page. but not in the c#.
so when i try to use the refresh event at the c# it dosnt seem to work. just as u said ur self that it retuns null cose it dosnt exist. Even tho i created the gauge with the designer.. so How can i make a gauge at the designer but still have it recognized at the c# page??
Hi,
here are some useful links:
http://help.infragistics.com/NetAdvantage/ASPNET/2010.3/CLR4.0/?page=WebGauge_WebGauge_Designer.html
http://help.infragistics.com/NetAdvantage/ASPNET/2010.3/CLR4.0/?page=WebGauge_Using_the_WebGauge_Designer.html
you can use them to set the gauge using the designer
Thanks,
hi again, yea i frigerd that one out :)
the only thing left is How can i use the guage i created in the desinger (not having to manuly create the gauge), and then feed it values in the code behind using the refresh event?
I missed coping the last line from the handler,
you set the value that way:
marker.Value = value + 5;
In that example, every time you click on the gauge, the value is increased by 5, you can make your own logic how often fire AsyncRefresh handler, I mean on every 5 seconds minutes etc., it's up to you.
i used ur code.
in your code u create ur own style at code. i want to use the editor to create the desgin.
and then in the refresh event i want to have the marker value change evry 5 secons (up/down/whatEver)
in your code i get the value back into "value". but how do i set the marker?