Search found 48 matches

by seanmurphy
Wed Jul 20, 2005 8:09 pm
Forum: VCL
Topic: Centre chart at Tlineseries X and Y
Replies: 1
Views: 3941

Centre chart at Tlineseries X and Y

Chart with lineseries, <1000 x and y values forming a curve. I would like to zoom right into the data so only about 30 points are displayed on chart. Would then like to have the chart cycle through the data one point at a time, ie. scrolling along the curve, always showing 30 points. One way to do t...
by seanmurphy
Wed Jul 20, 2005 6:50 pm
Forum: VCL
Topic: Drawline tool
Replies: 1
Views: 3974

Drawline tool

I would like to add a drawline with marks on the line acting as a ruler. Is there a way to get at the ondraw event of a drawline tool and add a scale there?

thanks
Sean.
by seanmurphy
Sun Jul 03, 2005 9:07 pm
Forum: VCL
Topic: Adding a Shape in code
Replies: 1
Views: 5375

Adding a Shape in code

I have the code var myrig:tchartshape; then.. myrig:=Tchartshape.Create(chart); chart.AddSeries(myrig); myrig.Title:='Myrig'; Myrig.ShowInLegend := True; Myrig.Marks.Visible := true; myrig.SeriesColor:=clred; myrig.XValues[0]:=X1; myrig.XValues[0]:=Y1; myrig.Style:=chasCircle; this creates the objec...