TContourseries

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Werner
Newbie
Newbie
Posts: 46
Joined: Mon Aug 06, 2007 12:00 am

TContourseries

Post by Werner » Tue Jul 22, 2008 8:22 am

What does the checkbox 'Filled' right of the Frame button in the Editor do ?

I want to fill the contourseries in my function, but I can't find the procedure call.

best regards

Werner

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Tue Jul 22, 2008 9:05 am

Hi Werner,

You can try use this:

Code: Select all

  Series1.Brush.Style:=bsSolid;
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Werner
Newbie
Newbie
Posts: 46
Joined: Mon Aug 06, 2007 12:00 am

Post by Werner » Tue Jul 22, 2008 9:21 am

Hi Narcis,

sorry, that doesn't work. Only checking the 'filled' checkbox in the editor fill the series, any other suggestions ?

best regards
Werner

Werner
Newbie
Newbie
Posts: 46
Joined: Mon Aug 06, 2007 12:00 am

Post by Werner » Tue Jul 22, 2008 9:31 am

Hi Narcis,

I have found it, my mistake.

Doing this caused the wrong behaviour :

Code: Select all

with (ContourChart.Series[0] as TContourSeries),MethodEditSpectraChartForm do begin
Brush.Style:=bsSolid;
end;

This was correct :
with (ContourChart.Series[0] as TContourSeries) do begin
Brush.Style:=bsSolid;
end;

Many thanks for your help.

Werner

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Tue Jul 22, 2008 9:33 am

Hi Werner,

We have recently made a few bug fixes in TeeSurfa.pas. I'm sending you the current version which works fine for me here. Could you please check if it works fine at your end?

Thanks in advance.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply