In the below code I don't want to see the field "policy_vat" on the measure dropdown.
I have tried commands like invisible="1", attrs invisible, specified with groups. All are not working. What to do??
<record id="crmdashboard_view_dubins" model="ir.ui.view">
<field name="name">crm.lead.dashboard.lead</field>
<field name="model">crm.lead</field>
<field name="arch" type="xml">
<graph string="Dashboard" type="pie">
<field name="lead_stages" type="row" />
<field name="dashboard_count" type="measure" />
<field name="policy_vat" invisible="1" />
</graph>
</field>
</record>