Gantt: printscale and resources

+3 votes
asked Jul 6, 2020 in Bug by anonymous
edited Jul 6, 2020
commented Jan 7, 2021 by DevilDog5280 (200 points)
I'm having the same issue, and it is preventing proper use of the Gantt chart with resources defined and the scale set to weekly.  Hopefully this gets fixed ASAP.
commented Jan 7, 2021 by plantuml (294,960 points)
I may be wrong, but I think it's working now with last release.

Could you check ?

Thanks!
commented Jan 7, 2021 by DevilDog5280 (200 points)
edited Jan 7, 2021 by DevilDog5280

Thanks for the quick reply, but unfortunately no.

Here's a code sample that isn't working because each resource shows an allocation of 700 for each week.

Note: I'm using the online renderer.

http://www.plantuml.com/plantuml/svg/VT5HIm9140Vmz_aKyvOzXDuQWMzgQGKHHe8FuSFa3RQwxjhEN27XT-_spaBBWdkQ-S_zVx1TKOfQh1p0dBogpCWnlZCltGRWplgb84N6MN0XSexMunN5vNNa3OnYMF1CiVg5OF1eMYPhjihl7E1fb673J4xn3Fk5TVaKIR0SJbFmexSzSfPbI3v7HrBEJQKGg4wix0l6HNmjWXK67vJnEQY65JmgpHc7BeGuSkHnQ1qBiCzJA7dCCO-fFVtjhrhpTssrtFb9CH5Ff1uSa6xzd4N_CxMnaLMcSHdSaTerwVABb5Ma5FufkgStMeJ9YrLEwqEJIQQowa0qC0DywEq91hlIJcVwNPVJHg0UtT1wpNxlbTfDSm7TyhvOkKy0

ganttscale weekly

Links are colored in DarkGrey
Project starts on 2021/01/04

[P1 (2W) - Build] as [P1] on {A} starts on 2021/01/11 and lasts 2 weeks
[P1] is colored in Turquoise
note bottom
Stage FloorPlan Files
endnote

[P2 (2W) - Build] as [P2] on {B} lasts 2 weeks
[P2] is colored in Turquoise
[P2] starts at [P1]'s start
note bottom
Ingest FloorPlan Files
endnote

[P3 (1W) - Test] as [P3] on {C} lasts 1 week
[P3] is colored in NavajoWhite
[P3] starts at [P2]'s end
note bottom
E2E QA
endnote

[E] as [P99] lasts 1 days
[P99] Happens on 2021/03/26

1 Answer

+3 votes
answered Jan 7, 2021 by plantuml (294,960 points)

Here's a code sample that isn't working because each resource shows an allocation of 700 for each week.

If you switch to a daily scale, it turns out to be 100 each day.

For a weekly scale, we sum the load of each day, that's why it displays 700. Now we could divide this by 7 and display 100. Is this what you are expecting ?

commented Oct 6, 2021 by Capitán Primate
As I understand it, the "100" means that the resource is working at 100% of capacity.

It won't matter if the scale is weekly or daily: the resource will work at 100% of capacity anyway.

Therefore, it wouldn't be correct to sum the load of each day.

Thank you very much.
...