Page 1 of 1
Axis no more visible
Posted: Tue Dec 09, 2008 2:51 pm
by 9788246
Hi..
I use TeeChat Version: 3.5.3225.32188.
If I make any axis invisible, it can not be made visible anymore in a radar chart:
(tChart1.Axes.Right.Visible =false/true)
Yo can test it in features demo. There is no problem in old versions.
Is that a bug?
Thanks.
Posted: Tue Dec 09, 2008 3:17 pm
by narcis
Hi MU,
This works fine for me here either using the
All Features\Welcome !\Chart styles\Extended\Radar example in the features demo and toggling the
Axis checkbox or using this code:
Code: Select all
public Form1()
{
InitializeComponent();
InitializeChart();
}
private void InitializeChart()
{
Steema.TeeChart.Styles.Radar radar1 = new Steema.TeeChart.Styles.Radar(tChart1.Chart);
radar1.FillSampleValues();
}
private void button1_Click(object sender, EventArgs e)
{
tChart1.Axes.Right.Visible = !tChart1.Axes.Right.Visible;
}
Can you reproduce the problem in the demo, available at TeeChart's program group? Can you modify the code snippet above so that we can reproduce the problem here?
Thanks in advance.
Posted: Tue Dec 09, 2008 3:29 pm
by 9788246
Please unchack all checkboxes in "All Features\Welcome !\Chart styles\Extended\Radar "
and check them again (V.3.5.3225.32188) Try this several times. The original state will not be shown anymore.. I tried it by 2 more users..
Thanks..
Posted: Tue Dec 09, 2008 4:29 pm
by narcis
Hi MU,
Could you please let us know the exact order I should toggle checkboxes? The only issue I found is that radar's pentagon line disappeared.
Thanks in advance.