Search found 14 matches
- Tue Jun 02, 2009 8:42 am
- Forum: VCL
- Topic: Problems after Delphi 2009 update 3
- Replies: 3
- Views: 10906
Hello Lenfors, The update 3 may reinstall TeeChart standard! After installing the update, when I start Delphi I had this message. I have removed this component and closed Delphi. After uninstalling TeeChart Pro (8.04) I have manually removed every files concerning TeeChart Pro and Std. Then I have r...
- Wed May 20, 2009 12:40 pm
- Forum: VCL
- Topic: CloneChartSeries and 3D PieSeries
- Replies: 2
- Views: 5033
I have found a way: CloneChartSeries(Series1).ParentChart := Form3.QRChart1.Chart; if Chart1.View3D then begin Form3.QRChart1.Chart.FreeAllSeries(nil); CloneChartSeries(Series1).ParentChart := Form3.QRChart1.Chart; end; After cloning the TPieSeries, if the 3DView is active then I free it and clone i...
- Wed May 20, 2009 12:20 pm
- Forum: VCL
- Topic: CloneChartSeries and 3D PieSeries
- Replies: 2
- Views: 5033
CloneChartSeries and 3D PieSeries
Hey, I have found another funny bug... You can find the file Project1.zip I have uploaded today. When I clone a TPieSeries in a 3D TChart, the depth of each slices is inverted! Another clone to a TQRChart produce the same artifact. But (even better) when I close the third form (containing the TQRCha...
- Wed May 20, 2009 9:52 am
- Forum: VCL
- Topic: TQRChart BottomAxis.LabelsFont
- Replies: 5
- Views: 8203
- Tue May 19, 2009 4:38 pm
- Forum: VCL
- Topic: TQRChart BottomAxis.LabelsFont
- Replies: 5
- Views: 8203
You're right, this code works fine: Chart2 := TChart.Create(Self); try Chart2.Align := alClient; Chart2.Color := clWhite; Chart2.BackWall.Color := clWhite; Chart2.BottomWall.Color := clGray; Chart2.Title.Font.Height := -21; Chart2.Title.Font.Name := 'Arial Unicode MS'; Chart2.Title.Text.Clear; Chart...
- Tue May 19, 2009 3:15 pm
- Forum: VCL
- Topic: TQRChart BottomAxis.LabelsFont
- Replies: 5
- Views: 8203
I sent you a project (Project1.zip) showing this problem. The Form1 contains a Unicode chart with a TBarSeries. The Clone button opens Form2 copying the TBarSeries to another chart using CloneChartSeries. Everything is OK! The Form2 has also a Clone button which opens Form3 assigning the TChart to a...
- Tue May 19, 2009 10:42 am
- Forum: VCL
- Topic: TQRChart BottomAxis.LabelsFont
- Replies: 5
- Views: 8203
TQRChart BottomAxis.LabelsFont
Hey, Yet another Unicode issue... RAD Studio 2009 TeeChart Pro 8.04 QuickReport Pro 5.04.2 As I need to export graphs as PDF files and it is not supported by TeeChart for Delphi 2009, I have tried to use QuickReport (with Gnostice Technologies). In a TQuickRep I have add a TQRChart for which I have ...
- Wed May 13, 2009 1:16 pm
- Forum: VCL
- Topic: ValueColor
- Replies: 4
- Views: 7756
Thank you for your help! This code is ok: procedure TForm1.SpeedButton1Click(Sender: TObject); begin Form2 := TForm2.Create(nil); try Series1.OtherSlice.Style := poNone; CloneChartSeries(Series1, Chart1).ParentChart := Form2.Chart1; Series1.OtherSlice.Style := poBelowPercent; TPieSeries(Form2.Chart1...
- Wed May 13, 2009 10:11 am
- Forum: VCL
- Topic: ValueColor
- Replies: 4
- Views: 7756
ValueColor
I have uploaded a simple project which reproduce the problem...
A Form with a Chart having a PieSeries and a SpeedButton to clone the graph in another Chart to anaother Form.
ValueColors are modified!
--
Alain
A Form with a Chart having a PieSeries and a SpeedButton to clone the graph in another Chart to anaother Form.
ValueColors are modified!
--
Alain
- Tue May 12, 2009 5:15 pm
- Forum: VCL
- Topic: ValueColor
- Replies: 4
- Views: 7756
ValueColor
Hey, Since TeeSaveToPDFFile is not valid with Delphi 2009 (and TeeChart Pro 8.04), I try to export my graphs from QuickReport 5 with Gnostice Technologies... I have installed QRChart (which is a little hard)! After that, I have created a form containing a QuickRep component and a QRChart. Her is my ...
- Thu Apr 23, 2009 3:59 pm
- Forum: VCL
- Topic: TeeChart 8.04 GIF and PDF Exports
- Replies: 10
- Views: 14921
OK, After looking into TeePDFCanvas.pas source code, I have modified the WriteStringToStream procedure and the TextToPDFText function of the TPDFCanvas: procedure WriteStringToStream(Stream: TStream; const S:AnsiString); function TextToPDFText(const AText: String): AnsiString; With this minor modifi...
- Thu Apr 23, 2009 9:54 am
- Forum: VCL
- Topic: TeeChart 8.04 GIF and PDF Exports
- Replies: 10
- Views: 14921
Hello Narcís,
But I'm using Delphi 2009 (Update 2)!
Here is my code:
I can send you a generated file.
Thanks,
But I'm using Delphi 2009 (Update 2)!
Here is my code:
Code: Select all
if SaveDialog1.Execute
then
TeeSaveToPDFFile(Chart1, SaveDialog1.FileName,
Chart1.Width, Chart1.Height);
Thanks,
- Wed Apr 22, 2009 3:59 pm
- Forum: VCL
- Topic: TeeChart 8.04 GIF and PDF Exports
- Replies: 10
- Views: 14921
- Wed Apr 08, 2009 2:48 pm
- Forum: VCL
- Topic: TeeChart 8.04 GIF and PDF Exports
- Replies: 10
- Views: 14921