label style problem
Posted: Tue Feb 14, 2006 2:33 am
I wants applying the style in Label_font.
Steema.TeeChart.Chart ch1 = WebChart1.Chart;
ch1.Axes.Bottom.Labels.Angle = 60;
ch1.Axes.Bottom.Labels.Font.Size = 7;
ch1.Axes.Bottom.Labels.Font.Name = "Tahoma";
ch1.Axes.Bottom.Labels.Font.Color = Color.FromArgb(163, 133, 107);
The style is applied..
========================================
ch1.Axes.Bottom.Labels.Items.Clear();
for(int i = 0; i < 30 ; i++)
{
ch1.Axes.Bottom.Labels.Items.Add(i, DateTime.Now.Date.Day.Tostring());
}
But after like this sentence executing style is not applied..
There isn't a solution method?
Steema.TeeChart.Chart ch1 = WebChart1.Chart;
ch1.Axes.Bottom.Labels.Angle = 60;
ch1.Axes.Bottom.Labels.Font.Size = 7;
ch1.Axes.Bottom.Labels.Font.Name = "Tahoma";
ch1.Axes.Bottom.Labels.Font.Color = Color.FromArgb(163, 133, 107);
The style is applied..
========================================
ch1.Axes.Bottom.Labels.Items.Clear();
for(int i = 0; i < 30 ; i++)
{
ch1.Axes.Bottom.Labels.Items.Add(i, DateTime.Now.Date.Day.Tostring());
}
But after like this sentence executing style is not applied..
There isn't a solution method?