Handsontable example

by handsoncode

HTML

<div id="example"></div>
<script src="https://cdn.jsdelivr.net/npm/handsontable@latest/dist/handsontable.full.min.js"></script>
<link type="text/css" rel="stylesheet" href="https://cdn.jsdelivr.net/npm/handsontable@latest/dist/handsontable.full.min.css">

Babel + JSX

const container = document.getElementById('example');
const hot = new Handsontable(container, {
  data: [
    [12.46546, 2.36, 4577.02, 7452.7985464]
  ],
  licenseKey: 'non-commercial-and-evaluation',
  colHeaders: true,
  type: 'numeric',
  numericFormat: {
  	pattern: {
    	mantissa: 3,
    },
  },
});