Hi, Thanks for your prompt reply.
I have downloaded version 1.1.2531.28391 and the problem still remains. Here is the picture of what happens. It fills up to 0,0 even though I have no point at 0,0!
This image is taken from a simple example I have created to demonstrate the problem.
To reproduce: In VS2005, create a WindowsApplication with a TChart object on it and add the following code to the Load event.
Code: Select all
private void Form1_Load(object sender, EventArgs e)
{
tChart1.Dock = DockStyle.Fill;
// set chart properties
tChart1.Aspect.View3D = false;
tChart1.Chart.Axes.Left.Automatic = false;
tChart1.Chart.Axes.Left.Minimum = 0;
tChart1.Chart.Axes.Left.Maximum = 40;
// create series
Steema.TeeChart.Styles.Polar polar = new Steema.TeeChart.Styles.Polar(tChart1.Chart);
tChart1.Chart.Series.Add(polar);
// set polar properties
polar.Color = Color.Black;
polar.Circled = true;
polar.CloseCircle = true;
polar.CircleLabels = true;
polar.ClockWiseLabels = true;
polar.RotationAngle = 90; // north being 0 degrees
polar.RadiusIncrement = 10;
polar.AngleIncrement = 22.5;
// set Brush
polar.Brush.Color = Color.Aqua;
polar.Brush.Visible = true;
polar.Brush.Transparency = 0;
// add points and angles: 140,160,180,160
polar.Add(360 - 140, 20);
polar.Add(360 - 160, 20);
polar.Add(360 - 180, 20);
polar.Add(360 - 160, 30);
}
Thanks for your help,
regards
Gordon.