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 - MinorTicksCount not rendering on all sections of a logarithmic axis.
Summary: MinorTicksCount not rendering on all sections of a logarithmic axis.
Status: RESOLVED DUPLICATE of bug 1388
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Axis (show other bugs)
Version: unspecified
Hardware: PC Windows
: Normal normal
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-05-02 09:42 EDT by christopher ireland
Modified: 2017-06-15 04:15 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 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 ***