Thanks for the information.
I'm still unable reproducing it using code below and resizing the chart. Does it work fine at your end? Could you please modify it so that we can reprodcue the problem here?
Code: Select all
public Form1()
{
InitializeComponent();
InitializeChart();
}
private void InitializeChart()
{
this.Width = 800;
this.Height = 600;
tChart1.Dock = DockStyle.Fill;
tChart1.Legend.Visible = false;
Steema.TeeChart.Styles.Bar bar1 = new Steema.TeeChart.Styles.Bar(tChart1.Chart);
Random y = new Random();
bar1.Add(y.Next(), "13 char label");
bar1.Add(y.Next(), "13 char label");
bar1.Add(y.Next(), "13 char label");
bar1.Add(y.Next(), "13 char label");
bar1.Add(y.Next(), "13 char label");
bar1.Add(y.Next(), "13 char label");
bar1.Add(y.Next(), "13 char label");
bar1.Add(y.Next(), "13 char label");
}