Page 1 of 1
Gantt Bar Height
Posted: Tue Nov 15, 2011 5:10 pm
by 13051613
Hello,
I want to change the property "Height" of the bars in the gantt series.
How I cant do this by code?
Thanks in advance.

Re: Gantt Bar Height
Posted: Thu Nov 17, 2011 8:23 am
by 13051613
Someone can help me?
Thanks in advance.
Re: Gantt Bar Height
Posted: Fri Nov 18, 2011 10:15 am
by 10050769
Hello Pujol1986,
If you want change the Height of gantt Series, you need change Pointer vertical size of it as do in next example of code:
Code: Select all
private void InitializeChart()
{
Steema.TeeChart.Styles.Gantt gantt = new Gantt(tChart1.Chart);
gantt.FillSampleValues();
gantt.Pointer.VertSize = 10;
}
I hope will helps.
Thanks,