Picking and Shaping Fields
Use these when you want to control which columns appear in your data — hide system fields, rename labels, or reorder columns.
Select Fields — DF_SELECT_FIELDS
Keep only the columns you need, or remove specific ones you don't want.
Use this when: your data has many columns but you only want to show a few, or you need to hide internal fields like _id before displaying a table.
Before
Code
After — keeping only timestamp, device_id, and kwh
Code
Code
Set mode to "exclude" to remove specific columns instead.
Rename Fields — DF_RENAME_FIELDS
Change the name of one or more columns.
Use this when: column names from your data source use shorthand or internal naming, and you want friendlier labels in your charts and tables.
Before
Code
After — renaming ts → Time, dev → Device, kwh → Energy (kWh)
Code
Code
Organise Fields — DF_ORGANIZE_FIELDS
Reorder, rename, and hide columns all in one step.
Use this when: you want to do a final cleanup before a table panel — put the most important columns first, rename a few, and drop the rest.
Before
Code
After — reordered, renamed, and internal fields hidden
Code
Code
Filter Fields by Name — DF_FILTER_FIELDS_BY_NAME
Keep or remove columns whose names match a pattern (using a text pattern).
Use this when: you have many columns that follow a naming convention and you want to bulk-include or bulk-remove them — for example, keep all columns that start with sensor_, or remove everything that starts with _.
Before
Code
After — keeping only columns that start with sensor_
Code
Code