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
6 changes: 0 additions & 6 deletions chaco/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,7 @@
- :class:`~.AbstractPlotRenderer`
- :class:`~.AbstractOverlay`
- :class:`~.BasePlotContainer`
- :class:`~.BasePlotFrame`
- :class:`~.CrossPlotFrame`
- :class:`~.DataView`
- :class:`~.SimplePlotFrame`
- :class:`~.PlotComponent`
- :class:`~.PlotGraphicsContext`
- :class:`~.PlotGraphicsContextMixin`
Expand Down Expand Up @@ -299,10 +296,7 @@
from .abstract_plot_renderer import AbstractPlotRenderer
from .abstract_overlay import AbstractOverlay
from .base_plot_container import BasePlotContainer
from .base_plot_frame import BasePlotFrame
from .cross_plot_frame import CrossPlotFrame
from .data_view import DataView
from .simple_plot_frame import SimplePlotFrame
from .plot_component import PlotComponent
from .plot_graphics_context import (
PlotGraphicsContext,
Expand Down
4 changes: 2 additions & 2 deletions chaco/base_plot_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@

class BasePlotContainer(Container):
"""
A container for PlotComponents that conforms to being laid out by
PlotFrames. Serves as the base class for other PlotContainers.
A container for PlotComponents. Serves as the base class for other
PlotContainers.

PlotContainers define a layout, i.e., a spatial relationship between
their contained components. (BasePlotContainer doesn't define one,
Expand Down
161 changes: 0 additions & 161 deletions chaco/base_plot_frame.py

This file was deleted.

154 changes: 0 additions & 154 deletions chaco/cross_plot_frame.py

This file was deleted.

4 changes: 2 additions & 2 deletions chaco/plot_factory.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
Contains convenience functions to create ready-made PlotRenderer
and PlotFrame instances of various types.
Contains convenience functions to create ready-made PlotRenderer instances of
various types.
"""

from numpy import array, ndarray, transpose, cos, sin
Expand Down
Loading