We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This works:
import plotly.figure_factory as ff df = [dict(Task="Job A", Start='2009-01-01', Finish='2009-02-28'), dict(Task="Job B", Start='2009-03-05', Finish='2009-04-15'), dict(Task="Job C", Start='2009-02-20', Finish='2009-05-30')] fig = ff.create_gantt(df) fig.show()
But this doesn't, because fig is a dict
fig
dict
import plotly.figure_factory as ff df = [dict(Task="Job A", Start='2009-01-01', Finish='2009-02-28', Complete=10), dict(Task="Job B", Start='2008-12-05', Finish='2009-04-15', Complete=60), dict(Task="Job C", Start='2009-02-20', Finish='2009-05-30', Complete=95)] fig = ff.create_gantt(df, colors='Viridis', index_col='Complete', show_colorbar=True) fig.show()
The text was updated successfully, but these errors were encountered:
fixed in #1607
Sorry, something went wrong.
No branches or pull requests
This works:
But this doesn't, because
fig
is adict
The text was updated successfully, but these errors were encountered: