Search found 9533 matches

by Yeray
Thu Apr 30, 2009 8:43 am
Forum: VCL
Topic: Annotation and an Arrow
Replies: 3
Views: 4863

Hi Ed, One solution could be allowing drag to your annotation, look at here . But I'm afraid that you should control your arrow position manually. Another solution could be using a dummy point series with pointers hided and with DragMarks tool associated. This could be an example: procedure TForm1.F...
by Yeray
Thu Apr 30, 2009 7:33 am
Forum: ActiveX
Topic: point figure sample code with vb6
Replies: 1
Views: 3532

Hi,

Have you seen the Tutorial 8 - ADO Database access?
You should find tutorials at TeeChart programs group.

PS: We recommend you to define an alias different to your license number at your forums profile
by Yeray
Wed Apr 29, 2009 3:18 pm
Forum: .NET
Topic: FastLine - Gaps in the line
Replies: 6
Views: 7118

Hi Loz,

Yes you are right. I've added it to the wish list to be fixed asap (TF02014122).
by Yeray
Wed Apr 29, 2009 2:40 pm
Forum: VCL
Topic: Teechartpro 7.12 Drawing a graph
Replies: 25
Views: 38323

Hi Didier, 1. I think that you have added a 3rd function but I think that you only need a line series. 2. You should give the X and Y points to the method Series3.AddXY. You could calculate as you are doing with tc and y1 and y2. Then, I think that this should result in the following: unit Unit1; in...
by Yeray
Wed Apr 29, 2009 1:52 pm
Forum: ActiveX
Topic: Upgrade TC ActX 5 to TC ActX 8 on VS2008 C++
Replies: 10
Views: 16990

Hi JSmey, I'm not an expert in how all theses files works together, but do you think that modifiying .vcproj files (with the VC++.NET utility) will do the good migration to TeeChart 8? I'm not an expert either, but probably these tools should work at your end. Please, try them, and do it step by ste...
by Yeray
Wed Apr 29, 2009 11:30 am
Forum: .NET
Topic: AfterDraw clip
Replies: 1
Views: 3731

Hi Chris,

There is tChart1.Aspect.ClipPoints property to clip the series, but if you are drawing custom labels directly to the canvas, I'm afraid that it's you who will have to control that.
by Yeray
Wed Apr 29, 2009 11:20 am
Forum: VCL
Topic: Bar Chart Missing Some Bars
Replies: 4
Views: 8296

Hi McMClark, We have some similar bugs identified with TeeChart v8 (and some of them are already fixed) but I'm not sure to identify what is your exact problem. Here is the code I used to try to reproduce it, but I couldn't. Could you please modify it in order to reproduce it? Or could you send us a...
by Yeray
Wed Apr 29, 2009 10:57 am
Forum: ActiveX
Topic: Upgrade TC ActX 5 to TC ActX 8 on VS2008 C++
Replies: 10
Views: 16990

Hi JSmey, With TeeChart installer there are some upgrade utilities provided (you should have the respective shortcuts in TeeChart programs group). They allow upgrades between TeeChart versions directly from dsw and vcproj files. If you have TeeChart versions 5, 6, 7 and 8 you should use the utilitie...
by Yeray
Wed Apr 29, 2009 10:13 am
Forum: ActiveX
Topic: Multiple graph instances programatically
Replies: 3
Views: 5288

Hi Yacu,

You should be able to create a chart at runtime like this:

Code: Select all

Dim chartObj As New TeeChart.TChart
And then you should be able to create series or what you want, normally:

Code: Select all

chartObj.AddSeries scHorizBar
by Yeray
Wed Apr 29, 2009 9:58 am
Forum: VCL
Topic: Teechartpro 7.12 Drawing a graph
Replies: 25
Views: 38323

Hi Didier, If I understand fine, the easiest way to do this probably would be adding a new line series with two points (one from the first function and one from the second). Here is a complete example: var a, b, Qf, S, Sa: Double; procedure TForm1.TeeFunction1Calculate(Sender: TCustomTeeFunction; co...
by Yeray
Wed Apr 29, 2009 9:45 am
Forum: ActiveX
Topic: Export to jpeg,bmp,png: Anti-Alias & Filters are lost!
Replies: 3
Views: 5741

Hi Sebastian,

I'm afraid I can't promise you anything. But it's in high priority, so it's expected to be revised.
by Yeray
Wed Apr 29, 2009 9:09 am
Forum: VCL
Topic: Negative values with an area series
Replies: 2
Views: 4256

Hi Ed Dressel, Note that there are two properties more logic for achieving it: Series1.UseYOrigin := true; Series1.YOrigin := 0; The area series, by default comes from "infinite". When you have two areas and set them as stacked, the second area shouldn't start at "infinite" but just over the first a...
by Yeray
Tue Apr 28, 2009 2:50 pm
Forum: ActiveX
Topic: Multiple graph instances programatically
Replies: 3
Views: 5288

Hi Yacu,

Yep, sorry, I've just corrected it. I'm investigating your issue right now and I'll answer you as soon as possible.
by Yeray
Tue Apr 28, 2009 2:48 pm
Forum: ActiveX
Topic: Export to jpeg,bmp,png: Anti-Alias & Filters are lost!
Replies: 3
Views: 5741

Hi Sebastian,

I'm afraid that's a known bug already in the wish list (TV52013668). The Antialias tool doesn't seem to work fine in exports.
by Yeray
Tue Apr 28, 2009 2:22 pm
Forum: VCL
Topic: Multi scale chart
Replies: 3
Views: 4609

Hi Calou,

Here there is an example I made some time ago that achieves that.