~ubuntu-branches/ubuntu/trusty/python-chaco/trusty

« back to all changes in this revision

Viewing changes to examples/stacked_axis.py

  • Committer: Bazaar Package Importer
  • Author(s): Varun Hiremath
  • Date: 2011-04-06 19:03:54 UTC
  • mfrom: (7.2.2 sid)
  • Revision ID: james.westby@ubuntu.com-20110406190354-rwd55l2ezjecfo41
Tags: 3.4.0-2
d/rules: fix pyshared directory path (Closes: #621116)

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
from enthought.traits.ui.api import Item, Group, View
20
20
 
21
21
# Chaco imports
22
 
from enthought.chaco.api import ArrayPlotData, HPlotContainer, \
 
22
from enthought.chaco.api import HPlotContainer, \
23
23
    OverlayPlotContainer, PlotAxis, PlotGrid
24
 
from enthought.chaco.tools.api import BroadcasterTool, PanTool, SimpleZoom 
25
 
from enthought.chaco.api import create_line_plot, add_default_axes, add_default_grids
 
24
from enthought.chaco.tools.api import BroadcasterTool, PanTool 
 
25
from enthought.chaco.api import create_line_plot
26
26
 
27
27
#===============================================================================
28
28
# # Create the Chaco plot.
103
103
                    )
104
104
    
105
105
    def _plot_default(self):
106
 
         return _create_plot_component()
 
106
        return _create_plot_component()
107
107
    
108
108
demo = Demo()
109
109