Skip to content

Commit

Permalink
Enable the use of xlim parameter for timeseries plots (#3491)
Browse files Browse the repository at this point in the history
  • Loading branch information
henriqueribeiro authored and philippjfr committed Feb 13, 2019
1 parent fbe4c70 commit e76fb6b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions holoviews/plotting/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -746,15 +746,15 @@ class GenericElementPlot(DimensionedPlot):
An explicit override of the y-axis label, if set takes precedence
over the dimension label.""")

xlim = param.NumericTuple(default=(np.nan, np.nan), length=2, doc="""
xlim = param.Tuple(default=(np.nan, np.nan), length=2, doc="""
User-specified x-axis range limits for the plot, as a tuple (low,high).
If specified, takes precedence over data and dimension ranges.""")

ylim = param.NumericTuple(default=(np.nan, np.nan), length=2, doc="""
ylim = param.Tuple(default=(np.nan, np.nan), length=2, doc="""
User-specified x-axis range limits for the plot, as a tuple (low,high).
If specified, takes precedence over data and dimension ranges.""")

zlim = param.NumericTuple(default=(np.nan, np.nan), length=2, doc="""
zlim = param.Tuple(default=(np.nan, np.nan), length=2, doc="""
User-specified z-axis range limits for the plot, as a tuple (low,high).
If specified, takes precedence over data and dimension ranges.""")

Expand Down

0 comments on commit e76fb6b

Please sign in to comment.