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