Skip to content

Commit

Permalink
Remove 'x' and 'y' aliases from Dimension enumeration
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpap committed Sep 28, 2016
1 parent b781fbe commit 82b14b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bokeh/core/enums.py
Expand Up @@ -106,7 +106,7 @@ def enumeration(*values, **kwargs):
"minutes", "hourmin", "hours", "days", "months", "years")

#: Specify a vertical/horizontal dimension
Dimension = enumeration("width", "height", "x", "y")
Dimension = enumeration("width", "height")

#: Specify a vertical/horizontal orientation for something
Orientation = enumeration("horizontal", "vertical")
Expand Down
2 changes: 1 addition & 1 deletion bokehjs/src/coffee/api/typings/enums.d.ts
Expand Up @@ -12,7 +12,7 @@ declare namespace Bokeh {
export type SpatialUnits = Units;
export type AngleUnits = "deg" | "rad";
export type DatetimeUnits = "microseconds" | "milliseconds" | "seconds" | "minsec" | "minutes" | "hourmin" | "hours" | "days" | "months" | "years";
export type Dimension = "width" | "height" | "x" | "y";
export type Dimension = "width" | "height";
export type Orientation = "horizontal" | "vertical";
export type Anchor = "top_left" | "top_center" | "top_right" | "right_center" | "bottom_right" | "bottom_center" | "bottom_left" | "left_center" | "center";
export type LegendLocation = Anchor;
Expand Down

0 comments on commit 82b14b5

Please sign in to comment.