Search found 128 matches

by xxxxxx
Sun Dec 02, 2007 6:34 pm
Forum: VCL
Topic: Multiple axes and zooming
Replies: 5
Views: 12502

Look at http://www.steema.com/support/faq/NewVC ... ES.htm#Q15 "Custom axes do not zoom. Any solutions?" as an initial step.
by xxxxxx
Thu Nov 29, 2007 11:45 pm
Forum: VCL
Topic: TEngine.pas missing
Replies: 3
Views: 6589

Re: TEngine.pas missing

4210526 wrote: When calling this function at runtime i am getting a 'Source missing
TeEngine.pas' error.
I never used Delphi6, could it be a message from built-in IDE debugger? Anyhow it would be usefull to see a screenshot
by xxxxxx
Wed Nov 28, 2007 10:53 pm
Forum: VCL
Topic: Series Data
Replies: 1
Views: 4644

Just a snap

Code: Select all

MySeries.XValues[i]:=NewXValue;
MySeries.YValues[i]:=NewYValue;
by xxxxxx
Fri Nov 02, 2007 2:56 pm
Forum: VCL
Topic: Export formats and their units
Replies: 4
Views: 6873

Exactly - that was the way I used to explore exporting possibilities.
by xxxxxx
Thu Nov 01, 2007 8:08 pm
Forum: VCL
Topic: Export formats and their units
Replies: 4
Views: 6873

Hi, Narcís!
Recently I also studied this issue and even after reading of the Chapter 12 had to use cut-and-try approach to find empirically which unit should be included into uses clause to enable export in particular format, say pdf. That chapter is definetly too lapidary
by xxxxxx
Thu Nov 01, 2007 7:52 pm
Forum: VCL
Topic: Runtime TFastlineSeries creation
Replies: 6
Views: 12016

10046032 wrote: Chart1.AddSeries(Series);
either

Code: Select all

Series.ParentChart:=Chart1
but also you need

Code: Select all

Series:= TFastLineSeries.Create(Self); 
as Form is an owner of the component Series
by xxxxxx
Tue Oct 30, 2007 10:26 pm
Forum: VCL
Topic: Draw icons insted of points in a Series
Replies: 10
Views: 15754

E.g. TImagePointSeries
by xxxxxx
Mon Oct 08, 2007 9:34 pm
Forum: VCL
Topic: Gradiants and Pie Series in 2d
Replies: 7
Views: 12605

For this I use GetFileSize utility (http://www.browsertools.net/Get-File-Size/index.html), that shows date and time of last modification
by xxxxxx
Mon Oct 08, 2007 9:21 pm
Forum: VCL
Topic: TLegendItems bug?
Replies: 1
Views: 4770

TLegendItems bug?

Tee8New demo/What's new/New in Legend/Items property After manual modification of Legend's Item modification of Legend's position results in misplacing of Legend's background: http://thumbnails.imajr.com/TLegendItems_333447.gif (To view original size click the image and then on Imajr site click the ...
by xxxxxx
Sat Oct 06, 2007 8:26 pm
Forum: VCL
Topic: Gradiants and Pie Series in 2d
Replies: 7
Views: 12605

Hi, TestAlways!
You should test always :lol: - "silent" update was made on September 14 (AFAIK looking on dates of files in my installation).
by xxxxxx
Sat Oct 06, 2007 3:28 pm
Forum: VCL
Topic: Access Violation in module TeeWorld87.bpl
Replies: 22
Views: 28339

Hi Alexander, Those packages are not at the client area. I've sent you an e-mail with the URL as well. Hi, Narcis! May I remind my request to send me updated packages for Delphi 5 and Turbo Delphi for Win32, I at last installed after the recent harddisk crash and got in similar case the following r...
by xxxxxx
Sat Oct 06, 2007 3:24 pm
Forum: VCL
Topic: Cartographic support for TWorldSeries
Replies: 0
Views: 5725

Cartographic support for TWorldSeries

Could anybody give me a tip how to use TWorldSeries with any other cartographic projection? You know, Russia is rather a big country :D and simple cartesian XY presentation of geographical coordinate system is not very suitable.
by xxxxxx
Sat Oct 06, 2007 9:32 am
Forum: VCL
Topic: [Answered] Strange behavior with tzdHorizontal
Replies: 8
Views: 11663

Hi, Narcís!
Could you please send me back Chart.pas file I sent to you? My harddisk suddently died and I lost this file :(
Thanks in advance!
by xxxxxx
Tue Oct 02, 2007 11:13 pm
Forum: VCL
Topic: Access Violation in module TeeWorld87.bpl
Replies: 22
Views: 28339

narcis wrote:Hi Alexander,

Those packages are not at the client area. I've sent you an e-mail with the URL as well.
In a meantime I complied TeeMaps demo and found error happens in the TWorldSeries constructor when Owner=NIL
by xxxxxx
Mon Oct 01, 2007 3:58 pm
Forum: VCL
Topic: ZOOM
Replies: 6
Views: 9691

Hi, Pep!
So far in such cases I used something like that

Code: Select all

TCustomChart(sender)).CancelMouse 
Do you reccomend use Abort procedure instead that actually invokes sort of exception?