text position in tasks/parallel tasks #65
Replies: 1 comment 1 reply
-
Hi @pitecantropo, the text aligment for tasks and parallel tasks already supported in the current version. Supported
Example: group = roadmap.add_group("Core Product Work Stream", text_alignment="left")
task = group.add_task("Base Functionality", "2022-11-01", "2023-10-31", text_alignment="left")
task.add_milestone("v.1.0", "2023-02-15")
task.add_milestone("v.1.1", "2023-08-01")
parellel_task = task.add_parallel_task("Enhancements", "2023-11-15", "2024-03-31", text_alignment="left") |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey,
This is a very neat project!
Would be nice to be able to override the "center alignment" text in the tasks and parallel tasks.
The reason being that sometimes the milestone covers the text if it happens to be coincide with the middle of the bar.
Another alternative to circumvent could be the placement of the milestone marker above the bar instead of over it?
Many thanks in any case for this tool and any consideration!
Beta Was this translation helpful? Give feedback.
All reactions