This question has been flagged
2 Replies
2234 Views
 when the graph is displayed, the amount does not appear, it is empty
<record model="ir.ui.view" id="test_graph"> 
<field name="name">test.graph</field>
 <field name="model">test</field>
 <field name="arch" type="xml">
 <graph string="name" type="pivot">
 <field name="amount" operator="+"/>
 </graph> </field>
  </record>
Avatar
Discard
Author Best Answer

it does't work :(


Avatar
Discard
Best Answer

You can't use operator="+" in pivot type graph.

Please use like, <field name="amount" type="measure"/> 

Avatar
Discard