Page 1 of 1

Radar type PolarChart

Posted: Mon Feb 09, 2009 6:23 am
by 13051032
Hi

I need a polar chart display that is similar to Radar type shown in Polar and Radar Transparency of Demo. When I tried to add data (which is very large in number of points), its drawing a very crowded points and not joining them to form an area. Please see uploaded PPT file for my display and suggest a vb .net code for creating Radar type polar chart. Is there any option like DrawAllPoints=false similar to fast line series in polar series?

The uploaded file name is teechart.ppt

Thanks,

Posted: Mon Feb 09, 2009 9:41 am
by 10050769
Hi asupriya!

I reproduced your issue with a simple exemple. I recomended that you genered a similar code using Polar.Pointer.Visible=false
as the following example:

Code: Select all

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        TChart1.Aspect.View3D = False
        Polar1.FillSampleValues(1000)
        Polar1.Pointer.Visible = False

    End Sub