-
Notifications
You must be signed in to change notification settings - Fork 2
[add] docs updates for v5.2 #23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
[add] what's new and migration guide for v5.2, afterDataLoaded event page
[update] toolbar-related docs
[add] docs on freezing/unfreezing rows and columns functionality
[add] hiding/showing cols/rows api, update related guides
[add] styled cells borders section into user guide, update related docs
[update] add sections for popup with formula description into related guides
### Usage | ||
|
||
~~~jsx | ||
afterColumnAdd: (cell: string) => void; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Надо тут поменять. Вроде про afterDataLoaded говорим
} | ||
}); | ||
~~~ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Я бы тут и в месте про работу со строками\колонками добавил, что зафиксировать колонки можно через dataset
const dataset = {
sheets: [
{ data: [...], freeze: {col: 1, row,1} },
...
]
Такой способ позволяет зафиксировать колонки строки еще на уровне parse без вызовов методов
@@ -69,6 +69,94 @@ To change the column width so that it would automatically adjust to the longest | |||
spreadsheet.fitColumn("G2"); | |||
~~~ | |||
|
|||
## Freezing/unfreezing rows and columns | |||
|
|||
You may need to fix (or "freeze") some columns or rows, so that they will become static when you scroll the page, while the rest of columns/rows remain movable. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Вот тут еще можно рассказать что фиксировать можно через dataset
No description provided.