Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
Description
TheAutoDateFormatter
handles the tick labels in a sensible way, but by default it is used for the data readout (e.g.,Axes.fmt_xdata
). As a result the data readout is highly discretized rather than quasi-continuous. This should handled automatically bydates.DateConverter
specifying a suitable alternative formatter for the readout in theAxesInfo
object it provides. This requires expandingAxesInfo
and everything working with to support this additional (optional) information.
In the case of datetimes, one approach for the readout would be to use floating point instead of integer for the least-significant element of the tick format string. For example, if the ticks are formatted as integer year-month-days, the readout could be the same but with floating point days, perhaps 2 digits after the decimal.