Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
160
Formatting owner in gantt chart
posted

Hi ,

I want to format Owner's font in gantt chart and also i want to change its position ,so instead of appearing in the middle i want it to be on the top of rectangles.

 

Talha

Parents
No Data
Reply
  • 17605
    posted

    You can try using OwnersLabelStyle property.

    this.UltraChart1.GanttChart.ShowOwners = true; 

     

    this
    .UltraChart1.GanttChart.OwnersLabelStyle.Font = new System.Drawing.Font("Arial", 10);

    this.UltraChart1.GanttChart.OwnersLabelStyle.VerticalAlign = System.Drawing.StringAlignment.Near;

    this.UltraChart1.GanttChart.OwnersLabelStyle.HorizontalAlign = System.Drawing.StringAlignment.Center;

Children
No Data