Search found 128 matches

by xxxxxx
Mon Jan 21, 2008 7:46 pm
Forum: VCL
Topic: Title editor only?
Replies: 13
Views: 20982

9349911 wrote: your code is great and works perfect.
It isn't mine, it's Steema's!
UTSL!!!:wink:
by xxxxxx
Mon Jan 21, 2008 7:01 pm
Forum: VCL
Topic: Problems Editing a TeeChart Office file
Replies: 12
Views: 19791

I can confirm that the issue with appending Series data do exists in TeeChart, it seems that TeeChartGrid.pas has a problem. I played also with Data Source and Data tabs in Chart Editor. Instead appending data it inserts some intermediate X values. To CAC: I do not belong to Steema and is a simple u...
by xxxxxx
Mon Jan 21, 2008 7:59 am
Forum: VCL
Topic: Problems Editing a TeeChart Office file
Replies: 12
Views: 19791

1. is there a way to store my user original setup of the TeeChart so that they can bring it up again? Try your luck with SaveChartToFile and with IncludeData as False 2. I also allow my users to play with data outside my programs using TeeChartOffice. There are many shortcomings in TeeChartOffice bu...
by xxxxxx
Sun Jan 20, 2008 11:15 pm
Forum: VCL
Topic: AV on multipage chart print
Replies: 6
Views: 9098

Try draw your charts onto Printer's canvas. This code draws two charts side by side below the mid of the page var PX, PY, OrgY, OrgX : Integer; R: TRect; MetaF : tMetaFile; begin PX:=Printer.PageWidth div 100; PY:=Printer.PageHeight div 100; OrgX:=PX*8; OrgY:=PY*6; YourChart1.Printing:=True; MetaF:=...
by xxxxxx
Sun Jan 20, 2008 10:53 pm
Forum: VCL
Topic: Map Demo problem
Replies: 3
Views: 6525

Re: Map Demo problem

10545775 wrote:Nallo,

Try the standard map demo - it cannot teeinspector... I search the hard disk -also cannot find it - despite source version being there.
Following "How To Ask Questions The Smart Way" (http://catb.org/~esr/faqs/smart-questions.html) could help.
by xxxxxx
Sun Jan 20, 2008 7:39 pm
Forum: VCL
Topic: gdiplus.dcu and TeeObjectInspector.dcu
Replies: 2
Views: 5488

Make sure that LIB folder from your TeeChart installation is listed in your Delphi IDE default library path!
And TeeObjectInspector.pas is in TeeChartOffice demo source folder.
by xxxxxx
Sun Jan 20, 2008 6:52 pm
Forum: VCL
Topic: Title editor only?
Replies: 13
Views: 20982

Hi, Pep and Dominik! Isn't it simpler? :wink: unit Unit1; interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, ExtCtrls, ComCtrls, TeeEdiTitl, TeePenDlg, Chart, Series, TeEngine, TeeProcs; type TForm1 = class(TForm) Chart1: TChart; Series1: TAreaSeries; Panel1: TP...
by xxxxxx
Wed Jan 09, 2008 10:56 pm
Forum: VCL
Topic: Scroll only one series ?
Replies: 6
Views: 10408

I do had some tasks where such feature could be useful, e.g for manual synchronizing two or more time series of simultaneous measurements, made by two different instruments having their own clocks (usually I shifted XValues for one of the examined series). Imho, the simplest way to solve the problem...
by xxxxxx
Tue Jan 08, 2008 12:27 am
Forum: VCL
Topic: Changing the name of a series
Replies: 3
Views: 8009

The easiest way to do that is using Delphi's Object Inspector. Select the series object from the combobox there and change the object's Name property. As to me, I highly appreciate rather new option of changing series name directly in design-time Chart Editor rather than coming back to and looking ...
by xxxxxx
Fri Jan 04, 2008 5:16 pm
Forum: VCL
Topic: Panning with Log Axes can bring negative values
Replies: 3
Views: 7505

Hello!
Unless you are indeed ready to dive into deep details of TeeChart, IMHO it's more simple just to trap OnAllowScroll event and do not allow scrolling logarithmic chart beyond respective domain.
by xxxxxx
Wed Dec 26, 2007 6:10 pm
Forum: VCL
Topic: Misunderstood the template technology ?
Replies: 5
Views: 10499

Frohe Weihnachten (Merry Christmas), Dominik :) I didn't mean modifying Steema source but using it for your own procedure instead. In general there are not so much problems when you use fixed amount of series and other features. I think a scheme could be something like this (roughly): procedure GetC...
by xxxxxx
Sun Dec 23, 2007 11:12 pm
Forum: VCL
Topic: Misunderstood the template technology ?
Replies: 5
Views: 10499

Hi, Greetz!
I guess your question is quite common for those trying to play with this function. Before I got source code I tried to write down my own implementation. The only suggestion I have is to comment lines #341 and 342 in TeeStore.pas
by xxxxxx
Sat Dec 22, 2007 11:22 pm
Forum: VCL
Topic: Installation for Turbo Delphi requires default path?
Replies: 1
Views: 4592

Installation for Turbo Delphi requires default path?

During teeChart Pro v8.02 for Turbo Delphi installation, after copying TeeInstall.exe I also got installation error, quite often discussed on this forum - “TeeChart files to AUTO install cannot be found”. It was not a big problem to me to remove previous version of TeeChart Pro and install the lates...
by xxxxxx
Sat Dec 22, 2007 10:49 pm
Forum: VCL
Topic: (Information) TeeChart and Delphi 5 compatibility issues
Replies: 1
Views: 4546

(Information) TeeChart and Delphi 5 compatibility issues

Even in the latest v8.02 release in run-time code and demo there are still Delphi 5 compatibility issues. The most critical to me was unavailability of FastLineSeriesEditor due to run-time error: Error reading FastLineSeriesEditor.Caption: invalid property value. My empirical workaround was removing...
by xxxxxx
Sun Dec 02, 2007 6:50 pm
Forum: VCL
Topic: Multiple axes and zooming
Replies: 5
Views: 12503

And don't forget to replace "IZoom" by "Zoom"