Search found 3271 matches

by Pep
Tue Dec 09, 2003 3:08 pm
Forum: ActiveX
Topic: VerticalAxisCustom property
Replies: 5
Views: 16119

Hi nefix, which TeeChart Pro version are you using ? It works fine using the TeeChart Pro v5.06 or above and the following code : Private Sub Form_Load() With TChart1 .Aspect.View3D = False .AddSeries scLine .Series(0).FillSampleValues 20 .AddSeries scLine .Series(1).FillSampleValues 20 .Axis.AddCus...
by Pep
Tue Dec 09, 2003 12:45 pm
Forum: ActiveX
Topic: Access Violation when removing custom axis
Replies: 3
Views: 11789

>Found the problem. It was an active ColorLine tool linked to a (not >visible) default axis.
Ok, thanks for the report, we'll review this and will try to solve it for the next maintenance releases.

Josep Lluis Jorge
http://support.steema.com
by Pep
Tue Dec 09, 2003 12:31 pm
Forum: VCL
Topic: problem using Tchart6
Replies: 1
Views: 10752

>application, Errors like, property "series.Marks.callout " doen not exist >occur. I suspect the problem is Delphi is still referencing some old TeeChart files. Check the old standard TeeChart files from Delphi directories. Most likely Delphi is still using them (they will be located in one of the s...
by Pep
Tue Dec 09, 2003 12:20 pm
Forum: VCL
Topic: Bring TSeriesMarkPosition to front
Replies: 7
Views: 21697

>This also occurs with other type series in 2d mode. So, how to fix?
I think the best way around is to do the same as I told you, set the marks position manually for the hidden marks.

Josep Lluis Jorge
http://support.steema.com
by Pep
Tue Dec 09, 2003 12:15 pm
Forum: VCL
Topic: Marks - behind series
Replies: 6
Views: 15398

I cannot reproduce the problem here using the TeeChart Pro v6.01. Could you please post the code that you're using so I can reproduce it here ?

Josep Lluis Jorge
http://support.steema.com
by Pep
Fri Dec 05, 2003 4:27 pm
Forum: ActiveX
Topic: Access Violation when removing custom axis
Replies: 3
Views: 11789

Which TeeChart Pro version are you using ? It works fine using the TeeChart Pro v6.04 and the following code : With TChart1 .Axis.RemoveAllCustom End With ' or .. With TChart1 Do While .Axis.CustomCount > 0 .Axis.RemoveCustom 0 Loop End With Josep Lluis Jorge http://support.steema.com
by Pep
Fri Dec 05, 2003 3:20 pm
Forum: ActiveX
Topic: ActiveX v5 ASP.net Printing Problem
Replies: 1
Views: 8366

Could you please send me one example (ASP page) to the steema.public.attachments newsgroup (with reference to the subject) so I can reproduce the problem "as is" here ?

Josep Lluis Jorge
http://support.steema.com
by Pep
Fri Dec 05, 2003 10:13 am
Forum: VCL
Topic: changing a series type in run time.
Replies: 1
Views: 9137

You can change the Series type in similar manner to the following (this will change to TBarSeries) :

Code: Select all

var tmp: TChartSeries; 
begin 
  tmp := Chart1.Series[0]; 
  ChangeSeriesType(tmp,TBarSeries); 
end;
Josep Lluis Jorge
http://support.steema.com
by Pep
Thu Dec 04, 2003 4:30 pm
Forum: ActiveX
Topic: visual problems
Replies: 20
Views: 30743

>If anyone had encountered the third problem or have a solution for it, i >would be very happy to know it. Have you tried to avoid this use the StopMouse() method as in the following example ? : Dim mstop As Boolean Private Sub Form_Load() With TChart1 .AddSeries scLine .Series(0).FillSampleValues 2...
by Pep
Thu Dec 04, 2003 12:07 pm
Forum: .NET
Topic: AxisLabelStyle question
Replies: 1
Views: 8832

Hi David, >but I do not understand how to set the text. In the helpfile I can read >that the texts are collected from Series.XLabels, but this property I do You can add the XLabels using the Add method like : line.Add(value,"label"); or use an array of string which contains the labels and assign it ...
by Pep
Thu Dec 04, 2003 11:03 am
Forum: VCL
Topic: Compatibility Delphi 5 <-> Delphi 7
Replies: 1
Views: 9590

>(error message:File not found:'TeeProcs.dcu'). Most likely the problem is you have not set the correct search path (it must be set where you have the compiled TeeChart Pro sources). >The actual problem is that I have a large program with TChart in D5 and >I want to recompile it in D7. And have you ...
by Pep
Thu Dec 04, 2003 10:36 am
Forum: VCL
Topic: Installation
Replies: 12
Views: 27920

Hi Valentin, >How to remove old packages? Just select "Component -> Install >Packages" , select "TeeChart" and click "remove" , or there are some >other files, which should be deleted. Yes, you only must remove all the TeeChart packages you find on the list. About the installation I suggest you down...
by Pep
Thu Dec 04, 2003 10:27 am
Forum: ActiveX
Topic: Add Array and Nan
Replies: 2
Views: 10027

>Can you have a Nan in the YArray for Series.Addarray ? Yes, but to add an YArray values which contains Nan values you should use something like the following code : Private Sub Form_Load() Dim YValues YValues = Array(3, 1, 8, NaN, 4, 7) With TChart1 .AddSeries scLine For i = 0 To UBound(YValues) If...
by Pep
Thu Dec 04, 2003 10:20 am
Forum: ActiveX
Topic: CheckDataSource + Oracle
Replies: 1
Views: 8224

Hi Andy,

as Christopher told you on newsgroups :

Try:

TChart1.Series(1).DataSource = -1

And then reset the datasource and run CheckDataSource().

Josep Lluis Jorge
http://support.steema.com
by Pep
Wed Dec 03, 2003 10:35 am
Forum: VCL
Topic: Installation
Replies: 12
Views: 27920

Hi Valentin, >... Is it enough to run TeeChart601SourceCode.EXE No, you must recompile the TeeChart Pro sources and then install it manually >(I can not find all *.bpl files reqired in Install.txt). You should recompile the sources to create them. >Do I have to remove TeeChart component that is orig...