Jump to content
Software FX Community

Statistics Extension: Is there any way to use Statistics Ext. with RealTime Graph.( On ChartFX For .NET 6.2) ?


User (Legacy)

Recommended Posts

Hello from Agilent,

1. Test case is to use and display HISTOGRAM for a Real Time Graph.

2. The ChartFx Statistics component provide this functionality, but the as

the enclosed example (with the component) exbhit,it is for analyzing an

offline/static set of data.

3. To accomplish the task to display or to use the Histograph in real time,

we need to be aware of a mechanism where we can supply real time data to the

component, and the component in turn can provide analysis displayed

4. Please provide us with anyone (all of them will be a big help..........)

of the mentioned:

a. A demo code which can expose all the required mechanism to accomplish

the mentioned

b. A document to explain the required interfaces to the component

c. Directions where we can find more advanced information

Thanks

Rakesh kumar

for

Agilent technology International

/*************Example Given for Statistics Component *******************/

// Create the Statistics extension

// If the extension is created at design-time you don't need to create it

here

Statistics statistics1 = new Statistics();

statistics1.Chart = chart1;

//Populating the Chart with random data

chart1.OpenData(SoftwareFX.ChartFX.COD.Values,1,100);

int j;

Random rnd = new Random();

double d1 = rnd.Next(100)+100;

double d2 = rnd.Next(100);

double d3 = rnd.Next(10);

for (j = 0; j < 100; j++)

{

int nSpecial = rnd.Next(40);

if (nSpecial == 1)

chart1.Value[0,j] = 200 + rnd.Next(100);

else

if (nSpecial == 2)

chart1.Value[0,j] = rnd.Next(100);

else

chart1.Value[0,j] = 100 + ((Math.Sin(((j*10+d2))/d1) +

1)*40)+rnd.Next(10)+d3;

}

chart1.CloseData(SoftwareFX.ChartFX.COD.Values);

chart1.GalleryObj = statistics1.Gallery.Histogram;

statistics1.Gallery.Histogram.LimitLeft = 6;

statistics1.Gallery.Histogram.LimitRight = 14;

TestBar.zip

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...