[IMP] Adding stats file
[odoo/odoo.git] / addons / web_graph / __openerp__.py
1 {
2     'name': 'Graph Views',
3     'category': 'Hidden',
4     'description': """
5 Graph Views for Web Client.
6 ===========================
7
8     * Parse a <graph> view but allows changing dynamically the presentation
9     * Graph Types: pie, lines, areas, bars, radar
10     * Stacked/Not Stacked for areas and bars
11     * Legends: top, inside (top/left), hidden
12     * Features: download as PNG or CSV, browse data grid, switch orientation
13     * Unlimited "Group By" levels (not stacked), two cross level analysis (stacked)
14 """,
15     'version': '3.0',
16     'depends': ['web'],
17     'js': [
18         'static/lib/nvd3/d3.v3.js',
19         'static/lib/nvd3/nv.d3.js',
20         'static/src/js/graph_view.js',
21         'static/src/js/pivot_table.js',
22         'static/src/js/graph_widget.js',
23     ],
24     'css': [
25         'static/src/css/*.css',
26     ],
27     'qweb' : [
28         'static/src/xml/*.xml',
29     ],
30     'auto_install': True
31 }