changing color back to black does not stick

TeeChart Beta versions
Post Reply
TestAlways
Advanced
Posts: 228
Joined: Tue Aug 28, 2007 12:00 am
Location: Oregon, USA

changing color back to black does not stick

Post by TestAlways » Thu Apr 01, 2010 1:30 am

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)

Narcís
Site Admin
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

Post by Narcís » Thu Apr 01, 2010 7:58 am

Hi TestAlways,

I could reproduce this and added the defect to the bug list (TV52014770) to be fixed. This is quite strange :shock:. 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
Image Image Image Image Image Image
Instructions - How to post in this forum

TestAlways
Advanced
Posts: 228
Joined: Tue Aug 28, 2007 12:00 am
Location: Oregon, USA

Re: changing color back to black does not stick

Post by TestAlways » Thu Apr 01, 2010 3:03 pm

I can change it in the Object Inspector as well. Just not the designer.

Ed

Narcís
Site Admin
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

Post by Narcís » Mon May 10, 2010 1:46 pm

Hi Ed,

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
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply