Point fill in a line series problem...

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Metman
Advanced
Posts: 113
Joined: Fri Dec 21, 2007 12:00 am

Point fill in a line series problem...

Post by Metman » Wed May 29, 2013 12:31 pm

Hi

I am still exploring the new release and I notice that the fill color you select when using points in a line series doesn't work.

In v8.0.8 I was filling a point in a line series with solid white and a red border but all I see now is a red border and a red fill.

Despite selecting a 'solid' color and 'white' in the pattern editor and then clicking OK the color refuses to change. Am I missing something here?

Bruce.

Metman
Advanced
Posts: 113
Joined: Fri Dec 21, 2007 12:00 am

Re: Point fill in a line series problem...

Post by Metman » Thu May 30, 2013 12:10 pm

Hi Yeray

I've tried this from scratch:

Code: Select all

procedure TForm1.FormCreate(Sender: TObject);
var
  Series1 : TLineSeries;
    i       : Integer;
begin

  Series1:=TLineSeries.Create(Self);

  for i:=0 to 10 do
    Series1.Add(i);

  Series1.Color:=clBlue;

  Series1.Pointer.VertSize:=6;
  Series1.Pointer.HorizSize:=6;
  Series1.Pointer.Visible:=True;
  Series1.Pointer.Brush.Color:=clWhite;
  Series1.Pointer.Brush.Style:=bsSolid;
  Series1.Pointer.Pen.Color:=clRed;


  Chart1.View3D:=False;
  Chart1.AddSeries(Series1);
end;
I think I have the code correct to fill in the middle of the point solid white.
The result is the same.
I've checked my library paths correct
I've checked that the new trial version component is correctly installed.
Never had any problems with 8.0.8 until I switched to your 2012 version on Tuesday. :(
Any ideas?
Capture1.jpg
Capture1.jpg (124.49 KiB) Viewed 8655 times
Bruce.

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Point fill in a line series problem...

Post by Yeray » Thu May 30, 2013 2:10 pm

Hi Bruce,

TeeChart v2012.05 introduced this bug. We fixed it for v2013.08. See this:
http://www.teechart.net/support/viewtop ... 237#p58518
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Metman
Advanced
Posts: 113
Joined: Fri Dec 21, 2007 12:00 am

Re: Point fill in a line series problem...

Post by Metman » Thu May 30, 2013 6:05 pm

Hi Yeray

Is it fixed or are you planning to fix it in the trial version?

If not I'll have to call it a day and go back to v8.0.8 which will be a pain!

Bruce.

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Point fill in a line series problem...

Post by Yeray » Fri May 31, 2013 7:25 am

Hi Bruce,

I see. I'm sorry. The v2013.08 was published but the evaluation installers weren't updated.
I'm doing it right now.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Yeray
Site Admin
Site Admin
Posts: 9602
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Point fill in a line series problem...

Post by Yeray » Fri May 31, 2013 8:16 am

Hi Bruce,

Done. Excuse us for the inconvenience.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Metman
Advanced
Posts: 113
Joined: Fri Dec 21, 2007 12:00 am

Re: Point fill in a line series problem...

Post by Metman » Fri May 31, 2013 8:51 am

Thanks Yeray you're a star :D

Post Reply