Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion chaco/base_2d_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
# Local relative imports
from .abstract_plot_renderer import AbstractPlotRenderer
from .base import reverse_map_1d
from .plot_label import PlotLabel
from .grid_data_source import GridDataSource
from .grid_mapper import GridMapper
from .image_data import ImageData
from .overlays.plot_label import PlotLabel


class Base2DPlot(AbstractPlotRenderer):
Expand Down
2 changes: 1 addition & 1 deletion chaco/base_xy_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
from .axis import PlotAxis
from .base import point_line_distance, reverse_map_1d
from .grid import PlotGrid
from .plot_label import PlotLabel
from .overlays.plot_label import PlotLabel


class BaseXYPlot(AbstractPlotRenderer):
Expand Down
4 changes: 2 additions & 2 deletions chaco/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@
from .grid_data_source import GridDataSource
from .grid_mapper import GridMapper
from .image_data import ImageData
from .legend import Legend
from .linear_mapper import LinearMapper
from .log_mapper import LogMapper
from .plot_label import PlotLabel
from .overlays.legend import Legend
from .overlays.plot_label import PlotLabel
from .plots.barplot import BarPlot
from .plots.candle_plot import CandlePlot
from .plots.colormapped_scatterplot import ColormappedScatterPlot
Expand Down
2 changes: 1 addition & 1 deletion chaco/selectable_legend.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from chaco.tools.select_tool import SelectTool
from traits.api import List

from .legend import Legend
from .overlays.legend import Legend


class SelectableLegend(Legend, SelectTool):
Expand Down
4 changes: 2 additions & 2 deletions chaco/tests/test_array_or_none.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@

from chaco.array_data_source import ArrayDataSource
from chaco.axis import PlotAxis
from chaco.data_label import DataLabel
from chaco.data_range_1d import DataRange1D
from chaco.label_axis import LabelAxis
from chaco.legend import Legend
from chaco.linear_mapper import LinearMapper
from chaco.overlays.data_label import DataLabel
from chaco.overlays.legend import Legend
from chaco.plots.scatterplot import ScatterPlot


Expand Down
2 changes: 1 addition & 1 deletion chaco/tools/image_inspector_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

# Chaco imports
from chaco.abstract_overlay import AbstractOverlay
from chaco.overlays.text_box_overlay import TextBoxOverlay
from chaco.plots.image_plot import ImagePlot
from chaco.text_box_overlay import TextBoxOverlay


class ImageInspectorTool(BaseTool):
Expand Down
2 changes: 1 addition & 1 deletion chaco/tools/regression_lasso.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
from traits.api import Any, Float, Instance

# Chaco imports
from chaco.lasso_overlay import LassoOverlay
from chaco.label import Label
from chaco.overlays.lasso_overlay import LassoOverlay
from .lasso_selection import LassoSelection


Expand Down