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.
Gantt Bar Height
Re: Gantt Bar Height
Someone can help me?
Thanks in advance.
Thanks in advance.
Re: Gantt Bar Height
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:
I hope will helps.
Thanks,
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;
}
Thanks,
Best Regards,
Sandra Pazos / 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 |