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 - Depth axis logarithmic draw labels as linear
Summary: Depth axis logarithmic draw labels as linear
Status: RESOLVED FIXED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Axis (show other bugs)
Version: 37.230130
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: yeray alonso
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2023-03-01 05:08 EST by yeray alonso
Modified: 2023-03-01 05:32 EST (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 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;