odoo/addons/web_graph/__openerp__.py

32 lines
908 B
Python
Raw Normal View History

{
'name': 'Graph Views',
'category': 'Hidden',
'description': """
Graph Views for Web Client.
===========================
* Parse a <graph> view but allows changing dynamically the presentation
* Graph Types: pie, lines, areas, bars, radar
* Stacked/Not Stacked for areas and bars
* Legends: top, inside (top/left), hidden
* Features: download as PNG or CSV, browse data grid, switch orientation
* Unlimited "Group By" levels (not stacked), two cross level analysis (stacked)
""",
'version': '3.0',
'depends': ['web'],
'js': [
'static/lib/nvd3/d3.v3.js',
'static/lib/nvd3/nv.d3.js',
'static/src/js/graph_view.js',
'static/src/js/pivot_table.js',
'static/src/js/graph_widget.js',
],
'css': [
'static/src/css/*.css',
],
'qweb' : [
'static/src/xml/*.xml',
],
'auto_install': True
}