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.
Point fill in a line series problem...
Re: Point fill in a line series problem...
Hi Yeray
I've tried this from scratch:
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?
Bruce.
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;
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?
Bruce.
Re: Point fill in a line series problem...
Hi Bruce,
TeeChart v2012.05 introduced this bug. We fixed it for v2013.08. See this:
http://www.teechart.net/support/viewtop ... 237#p58518
TeeChart v2012.05 introduced this bug. We fixed it for v2013.08. See this:
http://www.teechart.net/support/viewtop ... 237#p58518
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Point fill in a line series problem...
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.
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...
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.
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,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Point fill in a line series problem...
Hi Bruce,
Done. Excuse us for the inconvenience.
Done. Excuse us for the inconvenience.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Point fill in a line series problem...
Thanks Yeray you're a star