| id | table |
|---|---|
| title | Table viewer |
The Table viewer is able to display csv files clearly.
The table viewer can only be included as panels in Dashboards. See Dashboard documentation for general tips on creating dashboard configurations.
- Each table viewer panel is defined inside a row in a
dashboard-*.yamlfile. - Use panel
type: csvin the dashboard configuration. - Standard title, description, and width fields define the frame.
layout:
row1:
- type: 'csv'
title: Example Title
dataset: 'data.csv'
enableFilter: true
hide: [bike, car]
show: [bus]
showAllrows: falseTable viewer properties:
dataset: String. The filepath containing the csv-file.
enableFilter: true/false. This option could be used to filter columns. This option adds a filter mask to each column. The default setting is false.
hide: Array of strings. List of column names that should be ignored.
show: Array of strings. List of column names that should be displayed. If the hide and show option are in the .yaml file the hide option will be ignored.
showAllRows: true/false. This option defines whether the whole table should be displayed or if there are several pages. The default setting is false.
