Hi,
I add the following
Code: Select all
Polar p = chart[0] as Polar;
if (p != null)
{
chart.Axes.Left.Visible = false;
chart.Axes.Bottom.Visible = false;
chart.Axes.Top.Visible = false;
chart.Axes.Right.Visible = true;
chart.Axes.Right.Ticks.Visible = false;
p.Title = "hello";
p.Brush.Visible = false;
p.ClockWiseLabels = true; // angles increment clockwise
p.CircleLabels = true;
p.Circled = true;
p.RotationAngle = 90; // zero degrees is at top
p.AngleIncrement = 30; // 30 degrees increments
p.RadiusIncrement = 200;
}
Code: Select all
if (ATool != null)
{
chart.Tools.Add(ATool);
}
Code: Select all
chart.Axes.Right.Ticks.Visible = false;