Hi,
After adding a series line and set bottom axis format as datetime from edit chart, then entering chart->axis->bottom axis->change minmum, sometimes I can see two control edits - time and date, and time edit value is 00:00:00, however, sometime, I can only see time edit, date edit disappears, why this will happen ? if it does happen, how can I get date edit come back ? Thanks
Daniel
Re: Bottom axis - change minimum time can not see date edit
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Daniel,
Which TeeChart version are you using?
Thanks in advance.
Which TeeChart version are you using?
Thanks in advance.
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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Daniel,
Are the series associated to the affected axis set to DateTime XValues? For example:
Are the series associated to the affected axis set to DateTime XValues? For example:
Code: Select all
Series1.XValues.DateTime:=true;
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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Daniel,
I could finally reproduce what you reported here. This happens when series has not data and by default, the minimum value is a Time value. For example, when you populate series with DateTime values covering several days, as in the code snippet below, both values are available at the editor.
I could finally reproduce what you reported here. This happens when series has not data and by default, the minimum value is a Time value. For example, when you populate series with DateTime values covering several days, as in the code snippet below, both values are available at the editor.
Code: Select all
Series1.Clear;
Series1.AddXY(EncodeDate(2007,1,1),random);
Series1.AddXY(EncodeDate(2007,1,2),random);
Series1.AddXY(EncodeDate(2007,1,3),random);
Series1.AddXY(EncodeDate(2007,1,4),random);
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 |