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 1607

Summary: Increment not respected even when LabelsSeparation set to 0
Product: VCL TeeChart Reporter: christopher ireland <chris>
Component: AxisAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: normal CC: yeray
Priority: ---    
Version: unspecified   
Target Milestone: v2016.19   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description christopher ireland 2016-08-24 06:41:02 EDT
Code:

procedure TForm1.InitializeChart;
var series : TLineSeries;
   t : Integer;
begin
 Chart1.View3D:=false;
 series := TLineSeries(Chart1.AddSeries(TLineSeries));
 for t:=1 to 30 do
 begin
    series.AddXY(t, Math.RandomRange(0, 10000));
 end;
 series.Pointer.Visible:=true;
 Chart1.Axes.Bottom.Increment:=1;
 Chart1.Axes.Bottom.LabelsSeparation:=0;
end;