csgoh/roadmapper

End of task bar doesn't reach the end date

antmanin opened this issue · 3 comments

The end of task is December 31, 2024
But the bar ends in October
image

roadmap.set_title("Title")
roadmap.set_timeline("M", start="2023-01-01", number_of_items=34)

group = roadmap.add_group("Group")

task = group.add_task("Task", "2023-01-01", "2024-12-31", fill_colour='#00FF00')
roadmap.draw()
roadmap.save("demo01.png")```
csgoh commented

Thanks for letting me know. It will be fixed.

csgoh commented

@antmanin This is now fixed in the latest version 1.3.2.
image

@csgoh it works, thanks!