Search found 7 matches

by PascalKlaus
Thu Mar 20, 2008 10:48 am
Forum: VCL
Topic: How to show images from imagelist in TPointSeries
Replies: 2
Views: 5361

... and with the series event GetImage I can show different images:

Code: Select all

procedure TForm1.Series1GetImage(Sender: TCustomImagePointSeries;
  ValueIndex: Integer; Picture: TPicture);
begin
  ImageList1.GetBitmap(ValueIndex,Picture.Bitmap)
end;
Thats it! Thank you.
by PascalKlaus
Wed Mar 19, 2008 11:14 am
Forum: VCL
Topic: How to show different info on marks and MarksToolTip?
Replies: 1
Views: 4353

How to show different info on marks and MarksToolTip?

I have multiline infos for every gantt in a gantt series. But its too much to show this on the marks. But only show x or y value or percent for marks is not enough for me. What I need is a short label text for marks and a long label text for ToolTips. Is there a way to realize this?
by PascalKlaus
Wed Mar 19, 2008 11:01 am
Forum: VCL
Topic: How to show images from imagelist in TPointSeries
Replies: 2
Views: 5361

How to show images from imagelist in TPointSeries

I have some types of points to show in a TPointSeries on a time axes. Is there a way to show the points instead of rectangle or diamond (always the same for every point) with a different small image from a imagelist for everey type?
by PascalKlaus
Thu Dec 13, 2007 12:36 pm
Forum: VCL
Topic: How to export a QRTeeChart to PDF or HTML
Replies: 3
Views: 6402

Thank you for answering, but my problem is not to export the TeeChart alone. I want to export a Quickreport with the Quickreports export method. A QRTeeChart is embedded in this report, but is not visible in the exported html or pdf document.
by PascalKlaus
Thu Dec 13, 2007 9:26 am
Forum: VCL
Topic: How to export a QRTeeChart to PDF or HTML
Replies: 3
Views: 6402

How to export a QRTeeChart to PDF or HTML

Is there a way to export my Quickreport QRTeeChart to PDF or HTML format? If I do export my QuickReport I will only see the text components.

Thanks
Klaus
by PascalKlaus
Tue Dec 11, 2007 2:43 pm
Forum: VCL
Topic: DateTime hours "overflow" after 24h
Replies: 2
Views: 6663

This is a formatting problem. 36 h are 1.5 in datetime format. If you format this with FormatDateTime('dd - hh:nn',1.5) it will Return 31 - 12:00 (31 from 31.12.1899 (thats day 1)) use this instead of FormatDateTime: function GetTimeDiffStr(dTimeDiff:TDateTime):string; var sDays:string; begin if Abs...
by PascalKlaus
Mon Dec 10, 2007 7:59 am
Forum: VCL
Topic: TDBTree V.2, Master-Detail tree with 3 Datesets (3 levels)
Replies: 1
Views: 8290

TDBTree V.2, Master-Detail tree with 3 Datesets (3 levels)

Hi,
how do I realize a TDBTree with 3 levels and 3 datasets.
First dataset is master of second and second is master of third.
I thougt to realize it with the DBLayout items, but I'm missing there the Detail property.
Any idea?