Search found 9527 matches

by Yeray
Tue May 05, 2009 10:02 am
Forum: VCL
Topic: Teechartpro 7.12 Drawing a graph
Replies: 25
Views: 38245

Hi Didier,

Yes, I should refresh the page before sending the message :P
I'm happy to see that works fine for you.
by Yeray
Tue May 05, 2009 9:56 am
Forum: ActiveX
Topic: Some issues in the 8.0.0.5
Replies: 3
Views: 4866

Hi OptUser,

I can't tell you a date since we haven't fixed one yet. But I hope it will be in a few weeks.
Please, be aware at this forum or subscribe to our RSS news feed for new release announcements.
by Yeray
Thu Apr 30, 2009 3:21 pm
Forum: VCL
Topic: Annotation and an Arrow
Replies: 3
Views: 4863

Hi Ed, Here you have another possibility: The Rectangle Tool that is pretty similar than the Annotation but it allows dragging "out of the box". uses series, TeeTools; procedure TForm1.FormCreate(Sender: TObject); begin Chart1.AddSeries(TPointSeries.Create(self)); Chart1[0].FillSampleValues(50); Cha...
by Yeray
Thu Apr 30, 2009 11:17 am
Forum: ActiveX
Topic: Upgrade TC ActX 5 to TC ActX 8 on VS2008 C++
Replies: 10
Views: 16967

Hi JSmey,

I'm happy to hear that!
by Yeray
Thu Apr 30, 2009 11:16 am
Forum: ActiveX
Topic: Some issues in the 8.0.0.5
Replies: 3
Views: 4866

Hi OptUser, First of all I'd like you to confirm my impression. Have you turned Chart2.png and Chart3.png? You say that there is an error in Chart3.png but it looks wrong in Chart2.png, not in Chart3.png. If I understand well, this was a bug already solved in the actual sources so it will be fixed w...
by Yeray
Thu Apr 30, 2009 11:02 am
Forum: VCL
Topic: TcursorTool and show y value of several series
Replies: 4
Views: 5444

Hi Calou,

This ValueIndex has only sense with a series associated to the tool and snap as true:

Code: Select all

  ChartTool1.Series := Series1;
  ChartTool1.Snap := true;
by Yeray
Thu Apr 30, 2009 10:08 am
Forum: VCL
Topic: TcursorTool and show y value of several series
Replies: 4
Views: 5444

Hi Calou,

Here there is a thread where another customer asked the same. If you find problems, don't hesitate to ask anything.
by Yeray
Thu Apr 30, 2009 9:35 am
Forum: VCL
Topic: Bar Chart Missing Some Bars
Replies: 4
Views: 8281

Hi McMClark, There are many things I cannot use only with this code (datasource, UpdatePointsPerPage). Here is how I simplified it in order to be runnable as-is: procedure TForm1.FormCreate(Sender: TObject); begin Series1.FillSampleValues(100); ChartPageNavigator1.Chart := Chart1; Chart1.MaxPointsPe...
by Yeray
Thu Apr 30, 2009 9:02 am
Forum: ActiveX
Topic: Upgrade TC ActX 5 to TC ActX 8 on VS2008 C++
Replies: 10
Views: 16967

Hi JSmey,

I've verified the sent mails and found the one. Well, anyway we've just upload the files to the server to upgrade from v5 to v6 and from v6 to v7.
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: 7117

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: 38245

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: 16967

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.