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,
Radar type PolarChart
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:
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 |
Instructions - How to post in this forum |