Page 1 of 1

Point fill in a line series problem...

Posted: Wed May 29, 2013 12:31 pm
by 10047857
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.

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

Posted: Thu May 30, 2013 12:10 pm
by 10047857
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 8659 times
Bruce.

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

Posted: Thu May 30, 2013 2:10 pm
by yeray
Hi Bruce,

TeeChart v2012.05 introduced this bug. We fixed it for v2013.08. See this:
http://www.teechart.net/support/viewtop ... 237#p58518

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

Posted: Thu May 30, 2013 6:05 pm
by 10047857
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.

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

Posted: Fri May 31, 2013 7:25 am
by yeray
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.

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

Posted: Fri May 31, 2013 8:16 am
by yeray
Hi Bruce,

Done. Excuse us for the inconvenience.

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

Posted: Fri May 31, 2013 8:51 am
by 10047857
Thanks Yeray you're a star :D