csgoh / roadmapper

Roadmapper - A Roadmap as Code (Rac) python library. Generate professional roadmap diagram using python code.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

End of task bar doesn't reach the end date

antmanin opened this issue · 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")```

Thanks for letting me know. It will be fixed.

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

@csgoh it works, thanks!