Page 1 of 1

Axis delimiter has disappeard with TeeChart for .Net v2023

Posted: Thu Jun 22, 2023 8:14 am
by 15695876
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.

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

Posted: Thu Jun 22, 2023 3:34 pm
by Christopher
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.