Graph 在OpenERP V7中按天、周、月重新组合y轴场

Graph 在OpenERP V7中按天、周、月重新组合y轴场,graph,openerp-7,Graph,Openerp 7,我想知道如何在openERP v7中按天、月、年重新组合图形的Y轴。 我已经试过了,但openERP会在几个月后重新组合 <record model="ir.ui.view" id="id_view_contact"> <field name="name">test.base.graph.view1</field> <field name="model">test.base</field>

我想知道如何在openERP v7中按天、月、年重新组合图形的Y轴。 我已经试过了,但openERP会在几个月后重新组合

<record model="ir.ui.view" id="id_view_contact">
            <field name="name">test.base.graph.view1</field>
            <field name="model">test.base</field>
            <field name="type">graph</field>
            <field name="arch" type="xml">
                <graph string="contacts" type="bar" >
                    <field name="create_date"  group="False" />
                    <field name="temperature" />
                </graph>

            </field>
        </record>

有没有办法将y轴按小时、天、周、年进行重组?

可以使用过滤器吗?我还没有找到解决方案,有人有想法吗?有没有办法解决这个问题