Radar type PolarChart

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
asupriya
Advanced
Posts: 179
Joined: Mon Dec 01, 2008 12:00 am

Radar type PolarChart

Post by asupriya » Mon Feb 09, 2009 6:23 am

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,

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Post by Sandra » Mon Feb 09, 2009 9:41 am

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
Best Regards,
Sandra Pazos / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply