Skip to content

Configure columns order

UIinterface

Configures the order of columns (filters) in the Graph and Details sections.

By default the order is identical to that in the input dataset.

If only a subset of columns is specified here, the rest will maintain the original order.

Usage


The following are the step's expected inputs and outputs and their specific types.

Step signature
configure_columns_order(*columns: column, {
    "param": value
})

where the object {"param": value} is optional in most cases and if present may contain any of the parameters described in the corresponding section below.

Example

First cross filters: bio, age and deparment

Example call (in recipe editor)
configure_columns_order(ds.bio, ds.salary, ds.age, ds.department)
More examples

First columns in data table: bio, age and deparment

Example call (in recipe editor)
configure_columns_order(ds.bio, ds.salary, ds.age, ds.department, { "for": "dataTable" })

Inputs


*columns: column

Parameters


for: string

Given order applies to data table or cross filter (cross filter when none).

Must be one of: "dataTable", "crossFilter"