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,
here are some useful topics to guide you how to use WebChart control
http://help.infragistics.com/NetAdvantage/ASPNET/2010.3/CLR4.0/?page=Chart_Using_Chart.html
and here is one link for the WebGauge:
http://help.infragistics.com/NetAdvantage/ASPNET/2010.3/CLR4.0/?page=WebGauge_Using_WebGauge.html
And my advise is to take a look at our samples browser at
http://samples.infragistics.com/2010.3/WebFeatureBrowser/Default.aspx
where you can navigate to both WebGauge and WebChart sections and see all the samples up and runnning, there is also "Source Code" tab, where you can see the real code that stays behind the sample.
I think that's a good start
Thanks,
hi. thanks for the help..
small q,
i set a refreshIntreval to 10 seconds.
and added this:
protected void UltraGauge1_AsyncRefresh(object sender,
Infragistics.WebUI.UltraWebGauge.
RefreshEventArgs e)
{
LinearGauge gauge = this.UltraGauge1.Gauges[0] as LinearGauge;
LinearGaugeMarker marker = gauge.Scales[0].Markers[0];
int value = Convert.ToInt32(marker.Value);
tho this dos nothing. in debug i notice that there is no event fired (the brakepoint isnt reached).
whats worng?