Search found 191 matches

by Mike Jones
Tue May 26, 2009 9:18 pm
Forum: .NET
Topic: How do you disable Right Mouse button
Replies: 10
Views: 25485

Unable to create simple example

I am unable to create a simple example to send to you. I add the TeeChart project to our solution and I am able to break in the ChartController.DoMove(int, int) method. Here is a call stack TeeChart.dll!Steema.TeeChart.ChartController.DoMove(int X = 194, int Y = 117) Line 565 C# TeeChart.dll!Steema....
by Mike Jones
Tue May 26, 2009 4:34 pm
Forum: .NET
Topic: Rotating 3D chart outline Rotates outside Chart Boundaries
Replies: 4
Views: 7819

This been fixed

Has this been fixed in the latest TeeChart release? Per release notes Release Notes 19th May 2009 TeeChart.NET version 3 Build 3.5.3425.20245 Compiled for Visual Studio 2008 Build 3.5.3425.20244 Compiled in .NET Framework 2.0 Build 3.5.3425.20243 Compiled in .NET Framework 1.0 23) [No ticket number]...
by Mike Jones
Tue May 26, 2009 1:08 pm
Forum: .NET
Topic: Unhandled exception
Replies: 12
Views: 18182

suggestion

Simply what I show above will suffice. Adding the following code just below the 'try' block catch (Exception ex) { System.Diagnostics.Debug.WriteLine("Steema needs to add handling code here for this exception: " + ex.Message); } This should not affect performance since it occurs only when there is a...
by Mike Jones
Fri May 22, 2009 9:12 pm
Forum: .NET
Topic: Clickable Axis Title
Replies: 3
Views: 6084

Any possibility of this feature being considered?

Have not heard anything on this in over a year. Any possibility this new feature will be considered, soon?
by Mike Jones
Fri May 22, 2009 9:09 pm
Forum: .NET
Topic: Unhandled exception
Replies: 12
Views: 18182

When can this be addressed

The fix I proposed is fairly minor. Would like to see the catch block added. Can you tell me if that will be possible?
by Mike Jones
Wed May 20, 2009 1:38 pm
Forum: .NET
Topic: TeeChart for .NET [30 APR 2009] RELEASE 4.0.0.15032/3/4
Replies: 23
Views: 34594

What are the requirments for version 4.0?

We currently use Visual Studio 2005 with .NET Framework 2.0 using Winforms.

Will TeeChart Version 4.0 work for us?

Where is a list of new features in 4.0?
by Mike Jones
Fri May 15, 2009 8:30 pm
Forum: .NET
Topic: Unable to view points in Chart Editor
Replies: 1
Views: 4064

Unable to view points in Chart Editor

When a series is bound to a datatable, why can't the points be viewed in the Chart Editor. For example: I modified the TeeChart Examples project by adding a double click event handler to handle a double click on the chart control for the example at Welcome !\Datasets\Data table XY Series. So when I ...
by Mike Jones
Mon May 04, 2009 9:04 pm
Forum: .NET
Topic: TeeChart for .NET [30 APR 2009] RELEASE 4.0.0.15032/3/4
Replies: 23
Views: 34594

Release Notes

Will there be more info added to the release notes? Currently there is not anything very meaningful.

or where else can I find more details about this new version?
by Mike Jones
Mon May 04, 2009 7:07 pm
Forum: .NET
Topic: Points disappearing
Replies: 23
Views: 71762

We have to call Sort

As I stated before we can't always guarantee that the points we generate are sorted 100% of the time. If we only do Series.XValues.Order = Steema.TeeChart.Styles.ValueListOrder.Ascending; and not call the Series.Sort method, we have our original problem. Points will disappear when we pan or zoom. So...
by Mike Jones
Mon May 04, 2009 2:35 pm
Forum: .NET
Topic: Points disappearing
Replies: 23
Views: 71762

XValues.Order

It is not a problem to do Series.XValues.Order = Steema.TeeChart.Styles.ValueListOrder.Ascending; Does that have any effect if we add our points using the Series.Add(double[], double[]) and we don't call the Series.Sort() method ? I assumed the performance issues was caused by calling the Series.Sor...
by Mike Jones
Thu Apr 30, 2009 9:14 pm
Forum: .NET
Topic: Points disappearing
Replies: 23
Views: 71762

Results

In out application it looks like we take around a 3-5% hit in performance when calling the sort method. Ideally it would be nice if we could get away with not sorting, but it seems to take care of the bigger issue with points disappearing.
by Mike Jones
Thu Apr 30, 2009 4:05 pm
Forum: .NET
Topic: Points disappearing
Replies: 23
Views: 71762

not sure suggestion will work for our situation

We add our points by calling the Series.Add(double[], double[])

Will your suggestion work in this case?
by Mike Jones
Thu Apr 30, 2009 3:01 pm
Forum: .NET
Topic: Points disappearing
Replies: 23
Views: 71762

Not sure I understand

That's because those are default values and need to be set again because in your *.ten file you previously changed them. Otherwise it would work fine. Do you have a special need for changing them? I don't understand your response. In our real world application we produce the data to chart and add i...
by Mike Jones
Thu Apr 30, 2009 2:11 pm
Forum: .NET
Topic: Points disappearing
Replies: 23
Views: 71762

proposed solution

While your proposed solution works, it is not efficient. We may have 100 CustomPoint Series in the chart's series collection. While we rarely have more than 10 series visible at one time, each series can have literally 10's of thousands of points each. Sorting that # of point can be very time consum...
by Mike Jones
Wed Apr 29, 2009 3:06 pm
Forum: .NET
Topic: Points disappearing
Replies: 23
Views: 71762

Priority

This issue is very important to our customers. If we cannot chart the data accurately, it can have a negative impact on our relationship with our customers. Is it possible to make this issue a high priority so we can have an answer before the end of the week? I will continue trying to duplicate the ...