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 1532

Summary: MinorTicksCount not rendering on all sections of a logarithmic axis.
Product: VCL TeeChart Reporter: christopher ireland <chris>
Component: AxisAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED DUPLICATE    
Severity: normal CC: yeray
Priority: Normal    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description christopher ireland 2016-05-02 09:42:21 EDT
Duplicate of .NET:
http://bugs.teechart.net/show_bug.cgi?id=1387

procedure TForm1.InitializeChart;
var series : TLineSeries;
begin
   Chart1.View3D:=false;
   series:=TLineSeries.Create(Self);
   series.ParentChart:=Chart1;
   series.FillSampleValues(100);
   Chart1.Axes.Bottom.Logarithmic:=true;

end;

procedure TForm1.Button1Click(Sender: TObject);
begin
    Chart1.Axes.Bottom.Increment:=4;
    Chart1.Axes.Bottom.MinorTickCount:=5;
    Chart1.Axes.Bottom.MinorTickLength:=8;
    Chart1.Axes.Bottom.MinorTicks.Color:=clRed;
    Chart1.Axes.Bottom.SetMinMax(2, 8);
end;

procedure TForm1.Button3Click(Sender: TObject);
begin
    Chart1.Axes.Bottom.Increment:=40;
    Chart1.Axes.Bottom.MinorTickCount:=5;
    Chart1.Axes.Bottom.MinorTickLength:=8;
    Chart1.Axes.Bottom.MinorTicks.Color:=clRed;
    Chart1.Axes.Bottom.SetMinMax(2, 80);
end;
Comment 1 yeray alonso 2017-06-15 04:15:00 EDT

*** This bug has been marked as a duplicate of bug 1388 ***