Page 1 of 1
Radar Series
Posted: Wed Nov 05, 2008 3:53 pm
by 13047002
If I add several values to a Radar series
eg
12
9
6
3
how do I get the 3 value to be shown? as the last valu always shows as zero. eg 3 value is shown with line going to 0 at 12.
Posted: Wed Nov 05, 2008 4:06 pm
by narcis
Hi Luke,
You can solve this manually setting left axis minimum:
Code: Select all
public Form1()
{
InitializeComponent();
InitializeChart();
}
private void InitializeChart()
{
Steema.TeeChart.Styles.Radar radar1 = new Steema.TeeChart.Styles.Radar(tChart1.Chart);
radar1.Add(12);
radar1.Add(9);
radar1.Add(6);
radar1.Add(3);
tChart1.Axes.Left.AutomaticMinimum = false;
tChart1.Axes.Left.Minimum = 0;
}
Posted: Wed Nov 05, 2008 4:13 pm
by 13047002
Ok Great, thx. How do I make the axis labels appear above the series, as they get blanked out by the series.
Posted: Thu Nov 06, 2008 8:32 am
by narcis
Hi Luke,
You can set axes DrawBehind to false:
Posted: Thu Nov 06, 2008 8:50 am
by 13047002
Thx