Search found 6 matches

by JamesThomas
Wed Aug 04, 2010 8:11 am
Forum: .NET
Topic: Compilation error in 64bit Windows 7
Replies: 1
Views: 2292

Compilation error in 64bit Windows 7

Hello, I'm using v2.0.2179.x in my application. Recently tried to build my application in a 64 bit Windows 7 OS but the project that used TeeChart gives strange compilation errors. Error 3 Specific exception: "XmlException" Message: "Type in the data at line 774, position 3, cannot be loaded because...
by JamesThomas
Thu Jun 01, 2006 3:48 pm
Forum: .NET
Topic: Displaying TChart on a GDI+ surface in design mode
Replies: 8
Views: 6315

Displaying TChart on a GDI+ surface in design mode

Narcís,

Most of the code is copyrighted so I can't post as is, I will see if I can put something similar together for you instead though.

Thanks,
Martin
by JamesThomas
Wed May 31, 2006 1:55 pm
Forum: .NET
Topic: Displaying TChart on a GDI+ surface in design mode
Replies: 8
Views: 6315

Displaying TChart on a GDI+ surface in design mode

Narcís,

Still appearing at 0,0

:?

As an experiment I have another project which is a Windows form and these properties do work. It appears to be to do with the fact this is a GDI+ surface?

Martin
by JamesThomas
Wed May 31, 2006 1:40 pm
Forum: .NET
Topic: Displaying TChart on a GDI+ surface in design mode
Replies: 8
Views: 6315

Displaying TChart on a GDI+ surface in design mode

Narcís, The problem with that approach is that I cannot seem to place the Chart where I would like on the GDI surface. It always appears at (0,0). I have tried using the Size and Location properties. Size works but Location doesn't. // Below displays chart with correct size but always at 0,0 TChart....
by JamesThomas
Wed May 31, 2006 9:51 am
Forum: .NET
Topic: Displaying TChart on a GDI+ surface in design mode
Replies: 8
Views: 6315

Displaying TChart on a GDI+ surface in design mode

Hi Narcís, We are building a report designer. Users will be allowed to add a TChart to their reports. The reports themselves are displayed on the screen on a GDI+ drawing surface, not on a Windows Form. This is because we need to allow them to zoom and do various actions that are not possible on a W...
by JamesThomas
Thu May 25, 2006 3:55 pm
Forum: .NET
Topic: Displaying TChart on a GDI+ surface in design mode
Replies: 8
Views: 6315

Displaying TChart on a GDI+ surface in design mode

Hi, I am trying to add a TChart to a GDI+ surface but have it appear in design mode. How can I achieve this? I have a System.Drawing.Graphics object for the surface and I can do the following: Bitmap image = TChart.Chart.Bitmap((int) rect.Width, (int) rect.Height); g.DrawImage(image, (int)rect.X, (i...