Search found 4 matches

by Subsumption
Wed May 17, 2006 6:35 pm
Forum: VCL
Topic: auto scrolling and reduced windows view in chart
Replies: 1
Views: 2581

auto scrolling and reduced windows view in chart

Hi, I'm building some real time charts and I'm interesting in showing only the <n> last points of it - using the pages in the chart (with the maxPointPerPage property) is nice but I need the current page (the last one) to be filled at its max and not only one point when we get on a new one - I've go...
by Subsumption
Fri Oct 28, 2005 12:31 pm
Forum: VCL
Topic: Bar and Line on the same chart, Line are not showing
Replies: 4
Views: 4667

Hi Narcis,
Thanks for your answer, :D . Could you tell me when the bug will be solved ? Or if there is any way to cancel it without having to change the SideMargins of the bar series ?

Thanks
by Subsumption
Thu Oct 27, 2005 6:50 pm
Forum: VCL
Topic: Bar and Line on the same chart, Line are not showing
Replies: 4
Views: 4667

I have found one way to resolve my issue procedure TForm1.SpeedButton1Click(Sender: TObject); var i : integer; begin series2.SideMargins := false; for i:=0 to 10 do begin Series1.AddXY(i,random,'',clteecolor); end; end; The code below hide and show the graph : procedure TForm1.SpeedButton2Click(Send...
by Subsumption
Thu Oct 27, 2005 2:18 pm
Forum: VCL
Topic: Bar and Line on the same chart, Line are not showing
Replies: 4
Views: 4667

Bar and Line on the same chart, Line are not showing

I have teechart pro v7.05. Everything was all right before I update to this version. I create a new chart , I add a new line serie(series1) then a new bar serie(series2). I add a new button with this code var i : integer; begin for i:=0 to 10 do begin Series1.AddXY(i,random,'',clteecolor); end; end;...