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 - Increment not respected even when LabelsSeparation set to 0
Summary: Increment not respected even when LabelsSeparation set to 0
Status: RESOLVED FIXED
Alias: None
Product: VCL TeeChart
Classification: Unclassified
Component: Axis (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- normal
Target Milestone: v2016.19
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-08-24 06:41 EDT by christopher ireland
Modified: 2016-10-17 05:50 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-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;