Skip to content

Instroduce Spanish

yuliang.liang edited this page Mar 1, 2019 · 2 revisions

x-spreadsheet

Una hoja de cálculo javascript (canvas) para web

Instalación

npm install x-data-spreadsheet

Inicio rápido

<div id="x-spreadsheet-demo"></div>
import Spreadsheet from 'x-data-spreadsheet';
// Si necesita anular las opciones predeterminadas, puede establecer la anulación
// const options = {};
// new Spreadsheet('#x-spreadsheet-demo', options);
new Spreadsheet('#x-spreadsheet-demo')
  .loadData({}) // Cargar datos
  .change((data) => {
    // guardar datos en la db
  });
// opciones predeterminadas
{
  showToolbar: true,
  showGrid: true,
  view: {
    height: () => document.documentElement.clientHeight,
    width: () => document.documentElement.clientWidth,
  },
  row: {
    len: 100,
    height: 25,
  },
  col: {
    len: 26,
    width: 100,
    indexWidth: 60,
    minWidth: 60,
  },
  style: {
    bgcolor: '#ffffff',
    align: 'left',
    valign: 'middle',
    textwrap: false,
    strike: false,
    underline: false,
    color: '#0a0a0a',
    font: {
      name: 'Helvetica',
      size: 10,
      bold: false,
      italic: false,
    },
  },
}

Desarrollo

git clone https://github.com/myliang/x-spreadsheet.git
cd x-spreadsheet
npm install
npm run dev

Abre tu navegador y visita http://127.0.0.1:8080.

Navegadores Soportados

Navegadores modernos (chrome, firefox, safari).

Clone this wiki locally