changing color back to black does not stick
-
- Advanced
- Posts: 228
- Joined: Tue Aug 28, 2007 12:00 am
- Location: Oregon, USA
changing color back to black does not stick
I made the color of the left axis line red--then tried to set it to black but it won't stick. Other colors work fine but black (bottom-left color in color grid) will not stick. (Left Axis, Ticks tab, Axis, Color dialog)
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: changing color back to black does not stick
Hi TestAlways,
I could reproduce this and added the defect to the bug list (TV52014770) to be fixed. This is quite strange . It works fine at runtime too:
I could reproduce this and added the defect to the bug list (TV52014770) to be fixed. This is quite strange . It works fine at runtime too:
Code: Select all
uses Series;
procedure TForm1.FormCreate(Sender: TObject);
begin
Chart1.AddSeries(TLineSeries.Create(Self));
Chart1[0].FillSampleValues;
Chart1.Axes.Left.Axis.Color:=clRed;
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
Chart1.Axes.Left.Axis.Color:=clBlack;
end;
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 |
-
- Advanced
- Posts: 228
- Joined: Tue Aug 28, 2007 12:00 am
- Location: Oregon, USA
Re: changing color back to black does not stick
I can change it in the Object Inspector as well. Just not the designer.
Ed
Ed
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: changing color back to black does not stick
Hi Ed,
This was a bug with TButtonColor component which I fixed for next maintenance release.
This was a bug with TButtonColor component which I fixed for next maintenance release.
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 |