Custom delimeter for "export_format" feature

Hello!

I want to change delimeter while saving my dataframe, because I have commas in my dataset. For example, it would be convenient if delimeter was a semicolon (;). Is there a way to do such a thing?

Here’s a snippet of layout:

    dcc.Tab(label='Table 1', children=[
        dash_table.DataTable(
            id='table',
            columns=[{"name": i, "id": i} for i in df.columns],
            sort_action="native",
            filter_action="native",
            row_deletable=True,
            export_format="csv",
            data=df.to_dict('records'),
        )])

Any help would be appreciated.

Thank you in advance!