Axis delimiter has disappeard with TeeChart for .Net v2023

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
David N.
Newbie
Newbie
Posts: 8
Joined: Wed May 17, 2023 12:00 am

Axis delimiter has disappeard with TeeChart for .Net v2023

Post by David N. » Thu Jun 22, 2023 8:14 am

Hello,

I have encounter the following issue after upgrading my project library from the 2016 to the latest 2023 one. My chart axis delimiter has disappeared, is there a new option to get it back?
2016 TeeChart:
Image

2023 TeeChart:
Image

Thank you.
Attachments
image-20230622-073102.png
image-20230622-073102.png (41.84 KiB) Viewed 10025 times
image-20230622-073109.png
image-20230622-073109.png (47.05 KiB) Viewed 10025 times

Christopher
Guru
Posts: 1603
Joined: Fri Nov 15, 2002 12:00 am

Re: Axis delimiter has disappeard with TeeChart for .Net v2023

Post by Christopher » Thu Jun 22, 2023 3:34 pm

Hello,
David N. wrote:
Thu Jun 22, 2023 8:14 am
I have encounter the following issue after upgrading my project library from the 2016 to the latest 2023 one. My chart axis delimiter has disappeared, is there a new option to get it back?
This is usually the Visible property of the AxisPen, e.g.

Code: Select all

        public Form1()
        {
            InitializeComponent();

            tChart1.Series.Add(typeof(Bar)).FillSampleValues();
        }


        private void button1_Click(object sender, EventArgs e)
        {
            tChart1.Axes.Bottom.AxisPen.Visible = !tChart1.Axes.Bottom.AxisPen.Visible;
        }
If this doesn't work, could you please upload an M.R.E. as I mentioned at the end of this message.
Best Regards,
Christopher Ireland / 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

Post Reply