October 16, 2023: Mito for Dash, Custom Editors

Mito for Dash

We're incredibly excited to launch Mito for Dash, a drop-in replacement for dash_table and Dash AgGrid, that gets users out of basic tables and into a spreadsheet with formulas, pivot tables, graphs, and more. Of course, every edit generates code that corresponds to this edit.

Check out our full-featured documentation here.

Custom Editors

Mito Enterprise users can now provide Mito with a function of their own choosing, and Mito will automatically generate a UI for users that corresponds to this custom editor. This means a function like:

def calculate_moving_average(
    df: pd.DataFrame, 
    column_to_average: ColumnHeader, 
    window_size: int, 
    exponential: bool=False
)

Mito will generate a UI:

See full documentation for custom editors here.

Last updated