============ hide_columns ============ .. py:method:: hide_columns(self, col_list) **domain**: client **language**: python **class** :doc:`Report class ` Description =========== Use **hide_columns** method to hide some columns defined in the report :doc:`template `. The **col_list** parameter specifies which columns should be hidden. This is a list of integers or letters, defining the position of the report columns. Use this method in the :doc:`on_parsed ` event handler. Example ======= .. code-block:: py def on_parsed(report): report.hide_columns(['A', 'C') # report.hide_columns([1, 3]) See also ======== :doc:`Programming reports ` :doc:`Report templates ` :doc:`Server-side report programming ` :doc:`on_parsed ` :doc:`on_generate `