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
TContourseries
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Hi Narcis,
I have found it, my mistake.
Doing this caused the wrong behaviour :
Many thanks for your help.
Werner
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;
Werner
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
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.
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 |
Instructions - How to post in this forum |