Search found 8 matches

by sunjun
Fri Feb 09, 2007 11:39 am
Forum: .NET
Topic: Creating BoxPlots Dynamicly
Replies: 27
Views: 41010

Great! This works just fine!

Thanks a lot!

Anyway, I think that such obviously-needed functions should be somewhere in HOW-TO, FAQ or Tutorials...

//Dmitry.
by sunjun
Thu Feb 08, 2007 10:24 am
Forum: .NET
Topic: Creating BoxPlots Dynamicly
Replies: 27
Views: 41010

I think it is strange at least. What I mean that when I feed the Box with the data, I get a vizual representation of the whiskers, median, quartiles, etc. So, these values obviously MUST be available somewhere in the object. But if I have to calculate everything manually in order to have these value...
by sunjun
Thu Feb 08, 2007 9:00 am
Forum: .NET
Topic: Creating BoxPlots Dynamicly
Replies: 27
Views: 41010

Thanks, Narcis! But this is the exactly what I have tried - debug all the attributes you have providen here. All these attributes are equal to 0. This means, that *after* ADDing elements to the serie and *before* requesting these attributes, I have to initialize the graph somehow? Sincerely, //Dmitry.
by sunjun
Wed Feb 07, 2007 11:27 am
Forum: .NET
Topic: Creating BoxPlots Dynamicly
Replies: 27
Views: 41010

I had to realize the neccessary functionality the other way, ok. The next question is how can we get median, lower/higher quartile and whisker numerical positions? I have checked through the debug session that median and other attributes of the series object hold no data regarding these positions......
by sunjun
Fri Feb 02, 2007 9:19 am
Forum: .NET
Topic: Creating BoxPlots Dynamicly
Replies: 27
Views: 41010

Interesting, this works, of course, but with one matter:

the boxes are in proper positions, when the upper/lower limits, as well as * signs are all situated around the first box only! How can I overcome that?

Sincerely,
//Dmitry.
by sunjun
Thu Feb 01, 2007 5:35 pm
Forum: .NET
Topic: Creating BoxPlots Dynamicly
Replies: 27
Views: 41010

I have a problem with adding more than one BoxPlot to the chart. I can't seem to find an attribute, which is responsible for the X axis position of the box. If I make two series and fetch data in these, the boxes do overlay each other. If I try: BoxXX.Add(<x_axis_position>, <value>); or BoxXX.Add(<v...
by sunjun
Wed Jan 10, 2007 12:43 pm
Forum: .NET
Topic: Can we create our own Custom Function ?
Replies: 4
Views: 8015

Thanks a lot, Narcis!

I have adapted the code to my implementation and it works just nice. I will have to finalize the implementation of distribution function for our custom needs.

Best Wishes!
by sunjun
Wed Jan 10, 2007 12:24 pm
Forum: .NET
Topic: Can we create our own Custom Function ?
Replies: 4
Views: 8015

Defining custom CalculateEvent handler

I would like to ask how should I define the handler for my custom function? Should it be something like this: myCustomFunction.CalculateEvent += custom1_CalculateEvent(XXXXXXXXXXXXXX ? If so, how to form the proper list of arguments for this event handler? A code snippet would be very handy, it's to...