Search found 16 matches

by Kitry
Mon Mar 05, 2007 10:24 am
Forum: VCL
Topic: Printing bug for Annotation and Rectangle objects
Replies: 5
Views: 4925

Hi Narcís, Thanks. I just found it and already made some tests. Well, this method is not really better. Depending on the printer you're using, the result is for the best only stretched and for the worst mostly unreadable. http://img141.imageshack.us/img141/7521/stretchedga1.jpg I'm sorry but this is...
by Kitry
Mon Mar 05, 2007 10:04 am
Forum: VCL
Topic: Printing bug for Annotation and Rectangle objects
Replies: 5
Views: 4925

in this post, I found the following code : procedure TForm1.BitBtn1Click(Sender: TObject); var meta : TMetafile; begin Chart1.BevelOuter := bvNone; Meta := Chart1.TeeCreateMetafile(True, Chart1.ClientRect); try [b]Printer[/b].Orientation := [b]poPortrait[/b]; Printer.BeginDoc; try Printer.Canvas.Str...
by Kitry
Wed Feb 28, 2007 4:35 pm
Forum: VCL
Topic: Printing bug for Annotation and Rectangle objects
Replies: 5
Views: 4925

Printing bug for Annotation and Rectangle objects

Hi all, I found a very annoying printing issue for the Rectangles and Annotations object in TeeChart VCL. It seems that their position is changing between the print preview and the final paper printing. As it was quite hard to send you my paper print, I made some print with my virtual PDF printer : ...
by Kitry
Wed Feb 28, 2007 9:35 am
Forum: VCL
Topic: Transparency problem with Rectangle while printing
Replies: 3
Views: 3684

Thanks Narcis,

Does it mean that this feature will be include in Teechart 8 release ?
by Kitry
Tue Feb 27, 2007 8:46 pm
Forum: VCL
Topic: Transparency problem with Rectangle while printing
Replies: 3
Views: 3684

Transparency problem with Rectangle while printing

Hi all, I have a problem with Rectangle tool transparency. It's ok when on screen, but the transparency doesn't work when printing (IBM Network Printer 17 with WinXP SP2). This example contains 6 Annotations et 3 rectangles : http://img219.imageshack.us/img219/5144/chart1gl3.jpg As you can see, the ...
by Kitry
Wed Jul 12, 2006 1:07 pm
Forum: VCL
Topic: [SOLVED] Forcing values on Bottom Axis
Replies: 6
Views: 5963

My mistake. It doesn't work because I was doing Chart1[0].AddXY(0,20); with Chart1.Axes.Bottom do begin Items.Clear; // remove all custom labels Items.Add(0,'125'); Items.Add(1,'250'); Items.Add(2,'500'); Items.Add(3,'1000'); Items.Add(4,'2000'); end; instead of Chart1[0].AddXY(0,20,'125'); with Cha...
by Kitry
Wed Jul 12, 2006 9:10 am
Forum: VCL
Topic: [SOLVED] Forcing values on Bottom Axis
Replies: 6
Views: 5963

In this particular case (see above), I have a problem for Marks Style. I know that all possible styles are : smsValue, smsPercent, smsLabel, smsLabelPercent, smsLabelValue, smsLegend, smsPercentTotal, smsLabelPercentTotal, smsXValue, smsXY but none of them can send me the printed values on the botto...
by Kitry
Tue Jul 11, 2006 12:54 pm
Forum: VCL
Topic: [SOLVED] Problem creating Series Band + features missing
Replies: 7
Views: 6396

You find it. Adding the TeeEditPro unit solved the problem !

I didn't know that there was a different unit for the Pro version.

Thanks for all the help ;)
by Kitry
Tue Jul 11, 2006 9:38 am
Forum: VCL
Topic: [SOLVED] Problem creating Series Band + features missing
Replies: 7
Views: 6396

Hi again, 2. Ok, fixing the TeeFrench.pas file and recompiling works fine ! In fact I don't speak Finnish, it was just an exemple. Anyway the source code installer is a very nice tool. 3. Nevertheless, recompiling didn't fix the missing series type problem. I still can't access to HighLow series or ...
by Kitry
Fri Jul 07, 2006 9:16 am
Forum: VCL
Topic: [SOLVED] Problem creating Series Band + features missing
Replies: 7
Views: 6396

Narcis, Thanks for your help ! 1.The Series Band problem is solved :) 2.The PDF/SVG Export problem is solved too. I just see that some translation are partially done for the PDF export unit. The export tab shows "As PDF" instead of "comme PDF" (French translation). Finnish Translation is not done as...
by Kitry
Fri Jul 07, 2006 7:01 am
Forum: VCL
Topic: [SOLVED] Problem creating Series Band + features missing
Replies: 7
Views: 6396

[SOLVED] Problem creating Series Band + features missing

Hi, 1) I have a problem for creating Series Band in my program. I have two simple LineSeries and I would like to create a Series Band between them with the following code : procedure TForm1.Button3Click(Sender: TObject); var test : TSeriesBandTool; begin test := TSeriesBandTool.Create(Chart1); // Ne...
by Kitry
Mon Jun 26, 2006 12:52 pm
Forum: VCL
Topic: V7.07 - Wrong color in Chart Previewer
Replies: 4
Views: 4512

Ok, thanks for the tip :wink:
by Kitry
Fri Jun 23, 2006 9:48 am
Forum: VCL
Topic: V7.07 - Wrong color in Chart Previewer
Replies: 4
Views: 4512

Hi Narcis, I'm currently using Teechart V7.07. OS : Windows 2000 Pro SP4 french version (all patches till June'06). The only point is that the OS is running under a VMWare ESX Server. The OS is really clean as this VMWare image is dedicated for Delphi 6. Delphi 6 US Entreprise : Update pack 2 + RTL2...
by Kitry
Fri Jun 23, 2006 9:18 am
Forum: VCL
Topic: V7.07 - Wrong color in Chart Previewer
Replies: 4
Views: 4512

V7.07 - Wrong color in Chart Previewer

I have a problem for controlling the colors in the Chart Previewer. Check this please. With Delphi 6 (Update pack 2) : - Create a new application - Drop a Tchart component on the form (called Chart1) - Drop a TChartPreviewer component on the form (called ChartPreviewer1) - Double-click on the chart ...
by Kitry
Wed May 31, 2006 1:29 pm
Forum: VCL
Topic: [SOLVED] Forcing values on Bottom Axis
Replies: 6
Views: 5963

Yes, that's perfect ! I was too much focused on the series, and I didn't take care of the Axis properties. Adding the following code works : with Chart1.Axes.Bottom do begin Items.Clear; // remove all custom labels Items.Add(0,'125'); Items.Add(1,'250'); Items.Add(2,'500'); Items.Add(3,'1000'); Item...