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 1490 - TAxisBreaksTool not working with logarithmic axes
Summary: TAxisBreaksTool not working with logarithmic axes
Status: CONFIRMED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Tools (show other bugs)
Version: 150901
Hardware: PC Windows
: High normal
Target Milestone: ---
Assignee: Steema Issue Manager
URL: http://stackoverflow.com/questions/36...
Keywords:
Depends on:
Blocks:
 
Reported: 2016-04-04 04:05 EDT by narcís calvet
Modified: 2016-04-04 04:06 EDT (History)
0 users

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 narcís calvet 2016-04-04 04:05:50 EDT
Code to reproduce:

uses Series, TeeAxisBreaks;

procedure TForm1.FormCreate(Sender: TObject);
var i: Integer;
begin
  Chart1.View3D:=False;
  Chart1.Axes.Left.Logarithmic:=True;
  Chart1.AddSeries(TLineSeries.Create(Self));

  for i:=0 to 1000 do
    Chart1[0].Add(i);

  with TAxisBreaksTool.Create(Self) do
  begin
    Axis := Chart1.Axes.Left;
    Breaks.Add(10,20);
  end;
end;