Search found 2 matches

by Marcel
Wed Feb 06, 2008 1:45 pm
Forum: VCL
Topic: TeeChartScrollbar: problem with zoom in
Replies: 3
Views: 1955

Hi Marcel, This is because TChartScrollBar is not using DateTime range. You could try setting its maximum to 50000 at designtime and then use this code: uses DateUtils, Math; {$R *.dfm} procedure TForm1.FormCreate(Sender: TObject); var i: integer; begin Series1.XValues.DateTime:=true; for i:=0 to 1...
by Marcel
Tue Feb 05, 2008 2:42 pm
Forum: VCL
Topic: TeeChartScrollbar: problem with zoom in
Replies: 3
Views: 1955

TeeChartScrollbar: problem with zoom in

Hello, i've a problem with the TeeChartScrollBar. I've got a simple dataset with two fields: X (TDateTime) and Y (Integer). The minimum of X is today, the maximum is 100 days from today. I've connected a TeeChartScrollbar to the chart with the following properties: Axis = sbDefault; Align = alBottom...