Skip to content

Commit ecc9516

Browse files
committed
update plugin interface
1 parent 8c0ea56 commit ecc9516

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

pyexcel_matplotlib/__init__.py

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
1-
from pyexcel.internal.common import ChartPluginChain
1+
"""
2+
pyexcel_matplotlib
3+
~~~~~~~~~~~~~~~~~~~
24
5+
chart drawing plugin for pyexcel
36
4-
ChartPluginChain(__name__).add_a_plugin(
5-
submodule='plot.SimpleLayout',
6-
tags=['xy']
7+
:copyright: (c) 2016-2017 by Onni Software Ltd.
8+
:license: New BSD License, see LICENSE for further details
9+
"""
10+
from pyexcel.plugins import PyexcelPluginChain
11+
12+
13+
PyexcelPluginChain(__name__).add_a_renderer(
14+
relative_plugin_class_path='plot.SimpleLayout',
15+
file_types=['svg']
716
)

0 commit comments

Comments
 (0)