Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 2731 - Switch axis from default automatic min/max to logarithmic crashes
Summary: Switch axis from default automatic min/max to logarithmic crashes
Status: UNCONFIRMED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Axis (show other bugs)
Version: 39.231109
Hardware: PC Windows
: --- normal
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2024-07-16 09:30 EDT by Vincent Dsn
Modified: 2024-07-16 09:31 EDT (History)
1 user (show)

See Also:
Chart Series: ---
Delphi / C++ Builder RAD IDE Version: RAD 12 Athens


Attachments
demo project to reproduce the issue (5.34 KB, application/vnd.rar)
2024-07-16 09:30 EDT, Vincent Dsn
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Vincent Dsn 2024-07-16 09:30:39 EDT
Created attachment 1075 [details]
demo project to reproduce the issue

Axis.Logarithmic := True crashes when Axis.Minimum < 0 even if Axis.AutomaticMinimum is True. It is possible to keep the same values for Axis.Minimum with the workaround. I think that with automatic min/max for axis, Logarithmic := True should work.

workaround:
Axis.AutomaticMinimum := False; 
Axis.Minimum := 0.0000001; 
Axis.Logarithmic := True; 
Axis.AutomaticMinimum := True;