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

Summary: Switch axis from default automatic min/max to logarithmic crashes
Product: VCL TeeChart Reporter: Vincent Dsn <vincent.martignoni>
Component: AxisAssignee: Steema Issue Manager <issuemanager>
Status: UNCONFIRMED ---    
Severity: normal CC: yeray
Priority: ---    
Version: 39.231109   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version: RAD 12 Athens
Attachments: demo project to reproduce the issue

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;