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
While we handle most other datetime types, datetime.date is currently not handled, e.g. when you try the example below you get an error:
hv.Scatter(zip(pd.DatetimeIndex(start='2017-01-01', end='2017-01-04', freq='1d').date, np.linspace(0,1,4)))
The text was updated successfully, but these errors were encountered:
That'd be great! For Area as well.
hv.Area(zip(pd.DatetimeIndex(start='2017-01-01', end='2017-01-04', freq='1d').date, np.linspace(0,1,4)))
Sorry, something went wrong.
Now supported.
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
No branches or pull requests
While we handle most other datetime types, datetime.date is currently not handled, e.g. when you try the example below you get an error:
The text was updated successfully, but these errors were encountered: