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.
Search found 8 matches
- Fri Feb 09, 2007 11:39 am
- Forum: .NET
- Topic: Creating BoxPlots Dynamicly
- Replies: 27
- Views: 45436
- Thu Feb 08, 2007 10:24 am
- Forum: .NET
- Topic: Creating BoxPlots Dynamicly
- Replies: 27
- Views: 45436
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...
- Thu Feb 08, 2007 9:00 am
- Forum: .NET
- Topic: Creating BoxPlots Dynamicly
- Replies: 27
- Views: 45436
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.
- Wed Feb 07, 2007 11:27 am
- Forum: .NET
- Topic: Creating BoxPlots Dynamicly
- Replies: 27
- Views: 45436
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......
- Fri Feb 02, 2007 9:19 am
- Forum: .NET
- Topic: Creating BoxPlots Dynamicly
- Replies: 27
- Views: 45436
- Thu Feb 01, 2007 5:35 pm
- Forum: .NET
- Topic: Creating BoxPlots Dynamicly
- Replies: 27
- Views: 45436
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...
- Wed Jan 10, 2007 12:43 pm
- Forum: .NET
- Topic: Can we create our own Custom Function ?
- Replies: 4
- Views: 8631
- Wed Jan 10, 2007 12:24 pm
- Forum: .NET
- Topic: Can we create our own Custom Function ?
- Replies: 4
- Views: 8631
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...