We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c0ea56 commit ecc9516Copy full SHA for ecc9516
pyexcel_matplotlib/__init__.py
@@ -1,7 +1,16 @@
1
-from pyexcel.internal.common import ChartPluginChain
+"""
2
+ pyexcel_matplotlib
3
+ ~~~~~~~~~~~~~~~~~~~
4
5
+ chart drawing plugin for pyexcel
6
-ChartPluginChain(__name__).add_a_plugin(
- submodule='plot.SimpleLayout',
- 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']
16
)
0 commit comments