I'm adding several boxes to a gantt chart.
the last box is a summary which i want to be at the bottom so i added it to have the y parameter as 0, even though i added it the last order.
when there is more than neccesary boxes, the chart gets packed and the shadow of that box overlaps the box over them. the rest work fine but I guess since I add that one the last, it gets drawn the last ... !!
how can i solve this? I sitll this box to show under every other.
Gantt box overlapping
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi THoMaSiN,
Could you please send us a simple example project we can run "as-is" to reproduce the problem here.
You can either post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.
Thanks in advance.
Could you please send us a simple example project we can run "as-is" to reproduce the problem here.
You can either post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.
Thanks in advance.
Best Regards,
Narcís Calvet / 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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi THoMaSiN,
Thanks for the example project.
I could reproduce the problem here and added it (TF02013154) to our defect list to be fixed for next releases. In the meantime, a solution is adding YValue=0 bar before other bars:
Thanks for the example project.
I could reproduce the problem here and added it (TF02013154) to our defect list to be fixed for next releases. In the meantime, a solution is adding YValue=0 bar before other bars:
Code: Select all
Dim gc As New Steema.TeeChart.Styles.Gantt(Me.resourceGantt.Chart)
gc.XValues.DateTime = True
Dim days As Integer = 10
gc.Add(Today, Today.AddDays(days), 0, "Cummulated")
For i As Integer = 1 To 17
gc.Add(Today, Today.AddDays(days), i, i)
Next
'gc.Add(Today, Today.AddDays(days), 0, "Cummulated")
Best Regards,
Narcís Calvet / 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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Best Regards,
Narcís Calvet / 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 |