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.
Axis no more visible
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
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:
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.
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;
}
Thanks in advance.
Best Regards,
Narcís Calvet / 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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
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.
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.
Best Regards,
Narcís Calvet / 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 |