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 2564 - Wrong axis size in logarithmic axis
Summary: Wrong axis size in logarithmic axis
Status: RESOLVED FIXED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Axis (show other bugs)
Version: 36.220929
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: yeray alonso
URL: https://www.steema.com/support/viewto...
Keywords:
Depends on:
Blocks:
 
Reported: 2022-10-26 05:21 EDT by yeray alonso
Modified: 2022-10-26 05:21 EDT (History)
1 user (show)

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


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description yeray alonso 2022-10-26 05:21:31 EDT
From v2022.36, the logarithmic axis seems to take the half of its size.

Example:

var i: Integer;
begin
  with Chart1.AddSeries(TLineSeries) do
    for i:=0 to 99 do
      AddXY(i, Log10(i+1)*10000000);

  Chart1.Axes.Left.Logarithmic:=True;
end;