Skip to content

Commit

Permalink
docs: Update column-sizing.md (#5232)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinVandy committed Dec 27, 2023
1 parent dd870a3 commit de5788c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/guide/column-sizing.md
Expand Up @@ -89,7 +89,7 @@ By default, the column resize mode is set to `"onEnd"`. This means that the `col

In React TanStack Table adapter, where achieving 60 fps column resizing renders can be difficult, depending on the complexity of your table or web page, the `"onEnd"` column resize mode can be a good default option to avoid stuttering or lagging while the user resizes columns. That is not to say that you cannot achieve 60 fps column resizing renders while using TanStack React Table, but you may have to do some extra memoization or other performance optimizations in order to achieve this.

> Advanced column resizing performance tips will be discussed [down below](#advancedcolumnresizingperformance).
> Advanced column resizing performance tips will be discussed [down below](#advanced-column-resizing-performance).
If you want to change the column resize mode to `"onChange"` for immediate column resizing renders, you can do so with the `columnResizeMode` table option.

Expand Down Expand Up @@ -135,7 +135,7 @@ How you apply these size styles to your markup is up to you, but it is pretty co
>
```

Though, as discussed in the [advanced column resizing performance section](#advancedcolumnresizingperformance), you may want to consider using CSS variables to apply column sizes to your markup.
Though, as discussed in the [advanced column resizing performance section](#advanced-column-resizing-performance), you may want to consider using CSS variables to apply column sizes to your markup.

##### Column Resize APIs

Expand Down

0 comments on commit de5788c

Please sign in to comment.