Datatable - cells format like percent (%) ('format' in style_data_conditional doesn't work)

@flyingcujo

I tried to do so -

                style_data_conditional=[
                    {
                        'if': {
                            'row_index': 3,
                            'column_id': i,
                            'filter_query': '{' + str(i) + '} > 100'
                            },
                        'backgroundColor': '#99EE6B',
                        'type': 'numeric',
                        'format': FormatTemplate.percentage(1)
                    } for i in col_list
                ]

and it also doesn’t work