@worksheet-js/core
v1.6.2
Published
The high-performance, virtualized spreadsheet UI engine for modern web applications.
Readme
@worksheet-js/core
Industrial-grade spreadsheet engine for the modern web.
Install
npm install @worksheet-js/core chart.js
chart.js >= 4.0.0is a required peer dependency.
License key
import { initializeLicense } from '@worksheet-js/core';
initializeLicense('YOUR-LICENSE-KEY');Email [email protected] for a key.
Quick start
import { Worksheet, initializeLicense } from '@worksheet-js/core';
initializeLicense('YOUR-LICENSE-KEY');
const sheet = await Worksheet.create({
container: document.getElementById('app')!,
worksheets: [{ worksheetName: 'Sheet1' }],
toolbar: true,
formulaBar: true,
});
sheet.setValue('A1', 'Revenue');
sheet.setValue('B1', '=SUM(B2:B100)');Full API, options, events, and architecture notes on worksheetjs.com.
License
Proprietary. Usage is subject to the EULA.
