From 9bc93cd683ece6eb203c7ff93b23e3ff08209cba Mon Sep 17 00:00:00 2001 From: Darren Burns Date: Tue, 17 Jan 2023 10:06:39 +0000 Subject: [PATCH] Small datatable docs rewording --- docs/widgets/data_table.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/widgets/data_table.md b/docs/widgets/data_table.md index facbbddec..ffecdfded 100644 --- a/docs/widgets/data_table.md +++ b/docs/widgets/data_table.md @@ -23,17 +23,17 @@ The example below populates a table with CSV data. ## Reactive Attributes -| Name | Type | Default | Description | -|-----------------|---------|---------------|-------------------------------------------------------| -| `show_header` | `bool` | `True` | Show the table header | -| `fixed_rows` | `int` | `0` | Number of fixed rows (rows which do not scroll) | -| `fixed_columns` | `int` | `0` | Number of fixed columns (columns which do not scroll) | -| `zebra_stripes` | `bool` | `False` | Display alternating colors on rows | -| `header_height` | `int` | `1` | Height of header row | -| `show_cursor` | `bool` | `True` | Show the cursor | -| `cursor_type` | `str` | `"cell"` | One of `"cell"`, `"row"`, `"column"`, or `"none"` | -| `cursor_cell` | `Coord` | `Coord(0, 0)` | The cell the cursor is on | -| `hover_cell` | `Coord` | `Coord(0, 0)` | The cell currently hovered over by the mouse cursor | +| Name | Type | Default | Description | +|-----------------|---------|---------------|---------------------------------------------------------| +| `show_header` | `bool` | `True` | Show the table header | +| `fixed_rows` | `int` | `0` | Number of fixed rows (rows which do not scroll) | +| `fixed_columns` | `int` | `0` | Number of fixed columns (columns which do not scroll) | +| `zebra_stripes` | `bool` | `False` | Display alternating colors on rows | +| `header_height` | `int` | `1` | Height of header row | +| `show_cursor` | `bool` | `True` | Show the cursor | +| `cursor_type` | `str` | `"cell"` | One of `"cell"`, `"row"`, `"column"`, or `"none"` | +| `cursor_cell` | `Coord` | `Coord(0, 0)` | The coordinates of the cell the cursor is currently on | +| `hover_cell` | `Coord` | `Coord(0, 0)` | The coordinates of the cell the _mouse_ cursor is above | ## See Also