Axis no more visible

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
MU
Newbie
Newbie
Posts: 24
Joined: Mon Sep 05, 2005 4:00 am

Axis no more visible

Post by MU » Tue Dec 09, 2008 2:51 pm

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.

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Tue Dec 09, 2008 3:17 pm

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.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

MU
Newbie
Newbie
Posts: 24
Joined: Mon Sep 05, 2005 4:00 am

Post by MU » Tue Dec 09, 2008 3:29 pm

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..

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Tue Dec 09, 2008 4:29 pm

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.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply