From 7a407d43d42603ee922b302c2fce3f6ea9efcf2a Mon Sep 17 00:00:00 2001 From: Corran Webster Date: Mon, 18 Aug 2014 14:27:38 +0100 Subject: [PATCH] Fix enum value for 1d plot --- chaco/plot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chaco/plot.py b/chaco/plot.py index ba5f3be7c..c7b90ee26 100644 --- a/chaco/plot.py +++ b/chaco/plot.py @@ -966,12 +966,12 @@ def plot_1d(self, data, type='scatter_1d', name=None, orientation=None, if "bottom" in self.origin: direction = 'normal' else: - direction = 'reversed' + direction = 'flipped' else: if "left" in self.origin: direction = 'normal' else: - direction = 'reversed' + direction = 'flipped' plots = [] if plot_type in ("scatter_1d", "textplot_1d", "line_scatter_1d"):