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:
2023 TeeChart:
Thank you.
Axis delimiter has disappeard with TeeChart for .Net v2023
Axis delimiter has disappeard with TeeChart for .Net v2023
- Attachments
-
- image-20230622-073102.png (41.84 KiB) Viewed 11523 times
-
- image-20230622-073109.png (47.05 KiB) Viewed 11523 times
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Axis delimiter has disappeard with TeeChart for .Net v2023
Hello,
If this doesn't work, could you please upload an M.R.E. as I mentioned at the end of this message.
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;
}
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 |