Search found 191 matches
- Wed Sep 21, 2011 3:30 pm
- Forum: .NET
- Topic: Dragpoints and mass editting
- Replies: 1
- Views: 5123
Dragpoints and mass editting
I am using TeeChart for .NET version 3.5 I have a DragPoint series that I only allow dragging in the Vertical direction. Typically I have 10 points evenly dispersed horizontally across my 2D chart. I would like to quickly edit the vertical values (Y Axis). With the mouse, starting from the top/left ...
- Wed Sep 14, 2011 1:12 pm
- Forum: .NET
- Topic: TeeChart for .NET [30 APR 2009] RELEASE 4.0.0.15032/3/4
- Replies: 23
- Views: 37471
Re: TeeChart for .NET [30 APR 2009] RELEASE 4.0.0.15032/3/4
My question is really about deployment. It is clear that TeeChart.Direct2D only works on a compatible OS. What is not clear is how it has things coded to behave. Our application is installed using Click Once via a web page. Our users could be on Windows XP, or Windows 7. To use TeeChart.Direct2D do ...
- Tue Sep 13, 2011 2:28 pm
- Forum: .NET
- Topic: TeeChart for .NET [30 APR 2009] RELEASE 4.0.0.15032/3/4
- Replies: 23
- Views: 37471
Re: TeeChart for .NET [30 APR 2009] RELEASE 4.0.0.15032/3/4
Last follow up question.
In the TeeChart.Direct2D.dll, does it take care of recognizing if you are running on a Windows 7 machine or does the application using the TeeChart have to have code in it to recognize whether you are running on Windows XP or Windows 7?
In the TeeChart.Direct2D.dll, does it take care of recognizing if you are running on a Windows 7 machine or does the application using the TeeChart have to have code in it to recognize whether you are running on Windows XP or Windows 7?
- Mon Sep 12, 2011 3:56 pm
- Forum: .NET
- Topic: TeeChart for .NET [30 APR 2009] RELEASE 4.0.0.15032/3/4
- Replies: 23
- Views: 37471
Re: TeeChart for .NET [30 APR 2009] RELEASE 4.0.0.15032/3/4
I was looking at the Version Info page and don't see any features or enhancements that have been made. from 3.5 to version 2011 that apply to our use of TeeChart. Is there anything you can think of that might persuade me to upgrade if my application is on Winforms? I see I would definitely want to u...
- Sat Sep 10, 2011 8:20 pm
- Forum: .NET
- Topic: TeeChart for .NET [30 APR 2009] RELEASE 4.0.0.15032/3/4
- Replies: 23
- Views: 37471
Re: TeeChart for .NET [30 APR 2009] RELEASE 4.0.0.15032/3/4
We are revisiting the features of TeeChart for .NET 4. It is not clear if there are any features that would benefit us at this time. In our application, we use Winforms, .NET 2.0 with VS 2005. We hope to upgrade the development environment to VS 2010 in the near future. We will be staying with Winfo...
- Mon May 10, 2010 3:49 pm
- Forum: .NET
- Topic: Control Legend Items
- Replies: 3
- Views: 7812
Re: Control Legend Items
Is there anyway to use the the Edit Border property like what is showin in
Welcome !\Miscellaneous\Legend\Symbols Border
That would work perfectly for me if I could specify exactly which series to apply this property. I don't want to apply it to all entries in the legend.
Welcome !\Miscellaneous\Legend\Symbols Border
That would work perfectly for me if I could specify exactly which series to apply this property. I don't want to apply it to all entries in the legend.
- Fri May 07, 2010 9:41 pm
- Forum: .NET
- Topic: Control Legend Items
- Replies: 3
- Views: 7812
Control Legend Items
We would like to modify certain legend entries by visually changing the entry. For example if I have 5 series's showing in the Legend called Series A, Series B, ... Series E. We would like to show visually Series B and Series D differently by doing something like one of the following 1. Draw a dark ...
- Wed Dec 09, 2009 11:00 pm
- Forum: .NET
- Topic: Calling DoZoom
- Replies: 1
- Views: 4930
Calling DoZoom
I am seeing an issue when I call the DoZoom method on my 2D chart. I have a chart, I zoom in similar to how you can zoom in the example project at Welcome !\Miscellaneous\Zoom and Scroll\Direction where I can zoom both directions. Once zoomed in I do something in my application where I 1. Save the L...
- Thu Nov 05, 2009 3:45 pm
- Forum: .NET
- Topic: Why does the Drag event fire when not dragging
- Replies: 1
- Views: 5200
Why does the Drag event fire when not dragging
I am running across a problem where the Drag event of a DragPoint tool fires when I am mousing over a DragPoint series. I am not clicking any mouse buttons. Just moving my mouse over the series
Is this a common behavior or is this a bug?
Is this a common behavior or is this a bug?
- Tue Sep 08, 2009 1:31 pm
- Forum: .NET
- Topic: Unhandled exception
- Replies: 12
- Views: 19397
Re: Unhandled exception
A good article on exception handling to pass along for anyone interested
http://msdn.microsoft.com/en-us/magazine/cc188720.aspx
http://msdn.microsoft.com/en-us/magazine/cc188720.aspx
- Wed Jun 17, 2009 3:47 pm
- Forum: .NET
- Topic: Error in VS: does not implement IXMLSerializable interface
- Replies: 1
- Views: 6076
Error in VS: does not implement IXMLSerializable interface
Using TeeChart.dll version 3.5.3425.20244 Visual Studio 2005 Created a new Windows Forms project Added a TeeChart Controller control to Form1 Added a TeeChart control to Form1, set its Dock property = Top Right click on the Chart and select Edit Added a Line Series to the chart Go to the Series | Ge...
- Mon Jun 08, 2009 8:55 pm
- Forum: .NET
- Topic: Print Preview Dialog Problems
- Replies: 10
- Views: 24778
Any movement on this issue
Items 1 - 4 are pretty serious to us for our customer's experience with our application.
Can you tell me if these issue can be resolved in the near future?
Can you tell me if these issue can be resolved in the near future?
- Wed May 27, 2009 3:03 pm
- Forum: .NET
- Topic: How do you disable Right Mouse button
- Replies: 10
- Views: 26255
I think I solved the problem
Since we have the source code I rewrote the ChartController.DoMouseMove method. We don't need the right mouse button to operate on the chart so I changed this method Old code private void DoMouseMove(int X, int Y, Keys Shift) { if (dragging) { dragging = false; if (IsButtonDown(bNormal)) DoNormal(X,...
- Wed May 27, 2009 1:49 pm
- Forum: .NET
- Topic: How do you disable Right Mouse button
- Replies: 10
- Views: 26255
Just trying to prevent Moving
Like this thread has indicated, somehow in our application the user is able to right click and drag the chart around. I verified that the ChartController.DoMove(int, int) method is getting called when this happens. The chart which was in 2D goes to 3D and the chart is moved. This is very undesirable...
- Wed May 27, 2009 1:05 pm
- Forum: .NET
- Topic: Unhandled exception
- Replies: 12
- Views: 19397
Agree, but.....
It seems the consequences of not handling the exception is very bad. It causes an application that is using the TeeChart.dll to crash. If we did not have the source code, we would have to have this bug fixed or find a different tool. I would consider this a very high priority for non-source code cus...