Readme update
This commit is contained in:
parent
55e4eb0f70
commit
c34d913619
|
|
@ -1,10 +1,8 @@
|
||||||
# Modern Spreadsheet
|
# Modern Spreadsheet
|
||||||
|
|
||||||
- High performance spreadsheet based on CanvasAPI.
|
- High performance spreadsheet based on CanvasAPI.
|
||||||
- TypeScript supported
|
- TypeScript supported
|
||||||
|
|
||||||
## Basic usage
|
## Basic usage
|
||||||
|
|
||||||
```ts
|
```ts
|
||||||
import Spreadsheet from "modern_spreadsheet";
|
import Spreadsheet from "modern_spreadsheet";
|
||||||
import "modern_spreadsheet/style.css"; // <= this is required
|
import "modern_spreadsheet/style.css"; // <= this is required
|
||||||
|
|
@ -15,7 +13,6 @@ const sheet = new Spreadsheet(target);
|
||||||
```
|
```
|
||||||
|
|
||||||
## Save and load data
|
## Save and load data
|
||||||
|
|
||||||
```ts
|
```ts
|
||||||
function saveData() {
|
function saveData() {
|
||||||
const serialized = sheet.serializeData();
|
const serialized = sheet.serializeData();
|
||||||
|
|
@ -31,9 +28,8 @@ function loadData() {
|
||||||
```
|
```
|
||||||
|
|
||||||
## Roadmap
|
## Roadmap
|
||||||
|
- ~~Rows number and columns heading render~~
|
||||||
- Custom event functions (ex.: onSelectionChange, onCellEdit...). Full list of supported events will available on this page
|
- Custom event functions (ex.: onSelectionChange, onCellEdit...). Full list of supported events will available on this page
|
||||||
- Rows number and columns heading render
|
|
||||||
- Rows and columns resizing
|
- Rows and columns resizing
|
||||||
- Toolbar
|
- Toolbar
|
||||||
- Context menu
|
- Context menu
|
||||||
|
|
@ -41,4 +37,3 @@ function loadData() {
|
||||||
- Selected cell depends cells highlight
|
- Selected cell depends cells highlight
|
||||||
- Async formulas support
|
- Async formulas support
|
||||||
- Mutlisheets (?)
|
- Mutlisheets (?)
|
||||||
-
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue