-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated documentation for advanced fixed areas
- Loading branch information
Showing
5 changed files
with
20 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
docs/app/src/app/examples/fixed-rows-columns/fixed-rows-columns.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
<h1>Fixed rows/columns</h1> | ||
|
||
<p> | ||
The Table Engine currently supports fixing rows and columns to the left and top. | ||
The Table Engine currently supports fixing rows and columns to the left, top, right and bottom. | ||
Fixed rows or columns will always be visible, no matter where the user is scrolling in the table. | ||
You can enabled fixed rows or columns by setting <code>engine.getOptions().renderer.view.fixedRows</code> and/or <code>engine.getOptions().renderer.view.fixedColumns</code> to a non-negative number. | ||
In the below example two rows and one column are fixed and stay visible all the time when scrolling. | ||
You can enabled fixed rows or columns by configuring <code>engine.getOptions().renderer.view.fixedAreas</code> to your liking. | ||
In the below example two rows are fixed to the top and one to the bottom, one column to the left and right and stay visible all the time when scrolling. | ||
</p> | ||
|
||
<iframe src='https://stackblitz.com/edit/typescript-rjzhop?embed=1&file=index.ts&hideExplorer=1&hideNavigation=1&theme=light&view=preview'></iframe> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5488,10 +5488,10 @@ [email protected]: | |
resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-4.0.0.tgz#5b425f192279e87f2f9b937ac8540d1984b39205" | ||
integrity sha512-b19dMThMV4HVFynSAM1++gBHAbk2Tc/osgLIBZMKsyqh34jb2e8Os7T6ZW/Bt3pJFdBTd2JwAnAAEQV7rSNvcQ== | ||
|
||
table-engine@^0.1.7: | ||
version "0.1.7" | ||
resolved "https://registry.yarnpkg.com/table-engine/-/table-engine-0.1.7.tgz#4c26dc4779648b36b2334e969b831a0100c2f095" | ||
integrity sha512-S8yYXpq+Gd5cSqkKALZ8Lt7JngKA4GCzrSluyjDng0DE0lcahN1bkneVhTkNMdHmhziWHMd9yWIyu/xhDWGJ3A== | ||
table-engine@^0.2.1: | ||
version "0.2.1" | ||
resolved "https://registry.yarnpkg.com/table-engine/-/table-engine-0.2.1.tgz#bf1ebd89279a72a8b2fba3d3891ab10069904512" | ||
integrity sha512-4TJLRdRBLduXND0AlvN5cpPwhkpxwYinCcDmH3lSPJUUBkhYG99m3vK+GOnubGBVbko2HmXuFwHmtdJIPoTW4w== | ||
dependencies: | ||
rxjs "^7.4.0" | ||
|
||
|