eba3a0b887173c36b6dd5c4a196d708a86374255,examples/demo/basic/candle.py,Demo,Demo_1,#,86

Before Change


class Demo(HasTraits):
    plot = Instance(Component)

    traits_view = View(
                    Group(
                        Item("plot", editor=ComponentEditor(size=size,
                                                            bgcolor=bg_color),
                             show_label=False),
                        orientation = "vertical"),
                    resizable=True, title=title
                    )

After Change


class Demo(HasTraits):
    plot = Instance(Component)

    traits_view = View(UItem("plot", editor=ComponentEditor()),
                       width=size[0], height=size[1], resizable=True,
                       title=title
                       )
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 4

Non-data size: 8

Instances


Project Name: enthought/chaco
Commit Name: eba3a0b887173c36b6dd5c4a196d708a86374255
Time: 2012-02-09
Author: jmarch@enthought.com
File Name: examples/demo/basic/candle.py
Class Name: Demo
Method Name: Demo_1


Project Name: enthought/chaco
Commit Name: eba3a0b887173c36b6dd5c4a196d708a86374255
Time: 2012-02-09
Author: jmarch@enthought.com
File Name: examples/demo/edit_line.py
Class Name: Demo
Method Name: Demo_1


Project Name: enthought/chaco
Commit Name: eba3a0b887173c36b6dd5c4a196d708a86374255
Time: 2012-02-09
Author: jmarch@enthought.com
File Name: examples/demo/bigdata.py
Class Name: Demo
Method Name: Demo_1


Project Name: enthought/chaco
Commit Name: eba3a0b887173c36b6dd5c4a196d708a86374255
Time: 2012-02-09
Author: jmarch@enthought.com
File Name: examples/demo/basic/bounded_grids.py
Class Name: Demo
Method Name: Demo_1