Search found 3275 matches

by Pep
Tue Dec 09, 2003 4:50 pm
Forum: ActiveX
Topic: Unpredictable graph quality
Replies: 6
Views: 17578

Have you tried using :
tchart1.Export.asGIF.ColorReduction = rmWindows256

Josep Lluis Jorge
http://support.steema.com
by Pep
Tue Dec 09, 2003 4:30 pm
Forum: ActiveX
Topic: Color of Series
Replies: 5
Views: 13211

I cannot reproduce the problem here, could you please post the code here or send me an example to the steema.public.attachments so I can reproduce the problem "as is" here ?

Josep Lluis Jorge
http://support.steema.com
by Pep
Tue Dec 09, 2003 4:25 pm
Forum: ActiveX
Topic: ShowExport() ?
Replies: 2
Views: 9472

Hi Hans,

this feature is not yet available in the latest TeeChart Pro version, so I've added it on our wish list to be considered to inclusion for the next releases.

Josep Lluis Jorge
http://support.steema.com
by Pep
Tue Dec 09, 2003 3:29 pm
Forum: ActiveX
Topic: Save As Formats
Replies: 3
Views: 11886

This feature is not yet available in the latest TeeChart Pro version, however we've on our wish list to be considered to include it for the next releases. In meantime you could create your custom button in the TeeCommander and hide the "Save" button.

Josep Lluis Jorge
http://support.steema.com
by Pep
Tue Dec 09, 2003 3:08 pm
Forum: ActiveX
Topic: VerticalAxisCustom property
Replies: 5
Views: 16191

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

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

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

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

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

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

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

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

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

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

>(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 ...