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 2593

Summary: Depth axis logarithmic draw labels as linear
Product: VCL TeeChart Reporter: yeray alonso <yeray>
Component: AxisAssignee: yeray alonso <yeray>
Status: RESOLVED FIXED    
Severity: enhancement CC: yeray
Priority: ---    
Version: 37.230130   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description yeray alonso 2023-03-01 05:08:01 EST
Left and Bottom axes draw the labels in logarithmic increments. However, the depth axis still draws the labels in linear increments.

Example to reproduce the problem:

uses TeePoin3;

var Chart1: TChart;

procedure TForm1.FormCreate(Sender: TObject);
begin
  Chart1:=TChart.Create(Self);
  Chart1.Parent:=Self;
  Chart1.Align:=alClient;

  Chart1.Aspect.Orthogonal:=False;
  Chart1.Chart3DPercent:=100;
  Chart1.Aspect.Zoom:=80;
  Chart1.Legend.Hide;

  Chart1.Axes.Depth.Visible:=True;

  Chart1.Axes.Depth.SetMinMax(0.01, 10);
  Chart1.Axes.Depth.Logarithmic:=True;
  Chart1.Axes.Left.SetMinMax(0.01, 10);
  Chart1.Axes.Left.Logarithmic:=True;
  Chart1.Axes.Bottom.SetMinMax(0.01, 10);
  Chart1.Axes.Bottom.Logarithmic:=True;

  Chart1.AddSeries(TPoint3DSeries);
end;