Search found 20 matches

by BlueMonkey
Mon Sep 14, 2009 4:20 pm
Forum: .NET
Topic: ArgumentException was unhandled during rotation
Replies: 21
Views: 25086

Re: ArgumentException was unhandled during rotation

Setting the rotate tool Active property to false does not work. I tried making the rotate tool a class member so that it would be available to all the dynamic operation click methods. When I try to switch from Rotate to Translate, the rotate tool object is nil. I still think there is something wrong...
by BlueMonkey
Fri Sep 11, 2009 12:33 am
Forum: .NET
Topic: ArgumentException was unhandled during rotation
Replies: 21
Views: 25086

Re: ArgumentException was unhandled during rotation

Narcis, I replaced my source file with the one that you modified, so I think I should have gotten all of your changes. My comment about consistency lies with the fact that I am using your "tool" for rotation, but not for the other operations. Translation, thickness and zoom would still be manual. Th...
by BlueMonkey
Wed Sep 09, 2009 4:23 pm
Forum: .NET
Topic: ArgumentException was unhandled during rotation
Replies: 21
Views: 25086

Re: ArgumentException was unhandled during rotation

Hi, Using the Rotate "tool" instead of "manual" control of rotation is inconsistent with the other chart manipulation functions that my application supports. If I am going to use the Rotate tool, I would expect to find similar tools for Depth, Translation and Zoom, but there do not appear to be such...
by BlueMonkey
Tue Sep 01, 2009 2:49 am
Forum: .NET
Topic: ArgumentException was unhandled during rotation
Replies: 21
Views: 25086

Re: ArgumentException was unhandled during rotation

The example code that you sent to me that illustrates the technique for rotation was written for WinForms, not WPF. I tried to implement your technique in WPF, but the Height and Width members of the TChart component are not initialized, so the technique does not work. I have attached the revised ve...
by BlueMonkey
Wed Aug 26, 2009 12:26 am
Forum: .NET
Topic: ArgumentException was unhandled during rotation
Replies: 21
Views: 25086

Re: ArgumentException was unhandled during rotation

I would still like to know whether you even tried to reproduce the problems with my sample. In the case of the rotation problem, it crashes immediately in TeeChart code. You do not even need to look into my code. In the case of the cursor tool problem, I have isolated the location of the problem in ...
by BlueMonkey
Mon Aug 24, 2009 5:06 pm
Forum: .NET
Topic: ArgumentException was unhandled during rotation
Replies: 21
Views: 25086

Re: ArgumentException was unhandled during rotation

I don't understand why you need a simpler example. The one I sent to you reproduces the problems very easily. I may not be able to reproduce the problem with a trivial example.

Are you telling me that you tried to reproduce the problems with my example, and they worked as expected?

Thanks,
Kent
by BlueMonkey
Mon Aug 17, 2009 5:25 pm
Forum: .NET
Topic: ArgumentException was unhandled during rotation
Replies: 21
Views: 25086

Re: ArgumentException was unhandled during rotation

I have updated my project and uploaded the new project files and a sample data file. I removed the pdb files and the Teechart.WPF.dll in order to make the zip file small enough to upload. All you have to do is paste the latest Teechart.WPF.dll into the /bin/Debug folder of the project folder and reb...
by BlueMonkey
Mon Aug 17, 2009 4:30 pm
Forum: .NET
Topic: CopyToClipboard produces error
Replies: 4
Views: 7930

Re: CopyToClipboard produces error

I downloaded the latest TeeChart.NET (4.0.2009.28597) and I still get the same error:

The image cannot be decoded. The image header might be corrupted.

The code is: FChartTimeSeries.ChartDisplay.Export.Image.JPEG.CopyToClipboard();
by BlueMonkey
Fri Aug 07, 2009 4:35 pm
Forum: .NET
Topic: Can't make cursortool work in WPF
Replies: 1
Views: 3925

Can't make cursortool work in WPF

I am porting a TeeChart application from Delphi to WPF/dotNET. I cannot get the cursor tool to work with WPF. Here is a code snippet. During execution, the P.Y coordinate is always negative, and I never get match = true; I have uploaded my complete application for another issue that Sandra is invest...
by BlueMonkey
Fri Aug 07, 2009 3:11 pm
Forum: .NET
Topic: ArgumentException was unhandled during rotation
Replies: 21
Views: 25086

Re: ArgumentException was unhandled during rotation

Here is a new input file. It is a .csv instead of .txt.
by BlueMonkey
Fri Aug 07, 2009 12:22 am
Forum: .NET
Topic: Deploying a WPF web application requires full trust
Replies: 1
Views: 5146

Deploying a WPF web application requires full trust

Hi,

I am developing WPF web application that uses TeeChart. TeeChart requires full trust, which I would think significantly limits deployment as a web application. Will this limitation be removed in the near future?

Thanks,
Kent
by BlueMonkey
Thu Aug 06, 2009 5:53 pm
Forum: .NET
Topic: ArgumentException was unhandled during rotation
Replies: 21
Views: 25086

Re: ArgumentException was unhandled during rotation

I have attached a project and an input file. I had to remove pdb files and .exe file in order to make the project small enough to upload. Although it is not a trival project, it isn't that big either. Just build it and run it. To reproduce the problem do the following: 1. click the Browse... button ...
by BlueMonkey
Wed Aug 05, 2009 5:32 pm
Forum: .NET
Topic: ArgumentException was unhandled during rotation
Replies: 21
Views: 25086

Re: ArgumentException was unhandled during rotation

Hi Yeray, I tried your suggestion, but it did not work. I examined the value of Rotation when I applied a delta of -1. The resulting value of rotation was 359 as intended, but I still got the crash with "height must be non-negative." I do not have this code adjustment in my Delphi version, and I nev...
by BlueMonkey
Tue Aug 04, 2009 11:01 pm
Forum: .NET
Topic: CopyToClipboard produces error
Replies: 4
Views: 7930

CopyToClipboard produces error

I am porting Delphi code to WPF/C#. My delphi code to copy an image to the clipboard was: FChartTimeSeries.ChartDisplay.BufferedDisplay = False; FChartTimeSeries.ChartDisplay.CopyToClipboardBitmap; FChartTimeSeries.ChartDisplay.BufferedDisplay = True; I replaced this with the following C# code: FCha...
by BlueMonkey
Tue Aug 04, 2009 9:54 pm
Forum: .NET
Topic: Bar/Point series mark labels not working
Replies: 2
Views: 6191

Re: Bar/Point series mark labels not working

That worked.

Thanks alot,
Kent