Search found 4 matches

by CrazyICE
Thu Oct 28, 2004 6:45 am
Forum: VCL
Topic: Spider Chart
Replies: 7
Views: 9662

Hi, you could use similar code to the following : procedure TForm1.Chart1AfterDraw(Sender: TObject); begin with Chart1 do begin Canvas.Pen.Width := 2; Canvas.MoveTo(Chart1.Axes.Bottom.IStartPos,Chart1.Axes.Bottom.PosAxis); Canvas.LineTo(Chart1.Axes.bottom.IEndPos-50,55); end; end; sorry, but this c...
by CrazyICE
Tue Oct 12, 2004 3:10 pm
Forum: VCL
Topic: Spider Chart
Replies: 7
Views: 9662

so what do i have to do to create such pseudo-axes?

who do i get the center of the chart?
by CrazyICE
Fri Oct 01, 2004 1:49 pm
Forum: VCL
Topic: Spider Chart
Replies: 7
Views: 9662

the arrows on the axes are not really important. the important thing is that i get more axes than those shown in the image following. http://www.crazyice.net/common/spider1.jpg i used a TPolarSeries, which works fine. but how do i get additional axes like in the image in my first post. (two 45° axes...
by CrazyICE
Fri Oct 01, 2004 10:36 am
Forum: VCL
Topic: Spider Chart
Replies: 7
Views: 9662

Spider Chart

hi,
i'm new and i need help creating a spider chart displayed in the following image.

Image

it's necessary to create mor than 2 axes (4 sections). how do i create such a chart?