Handsontable example

HTML

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/handsontable.full.min.css">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/handsontable.full.min.js"></script>
<div id="example1" class="hot handsontable htColumnHeaders"></div>

JavaScript

var container = document.getElementById('example1'),
    hot = new Handsontable(container, {
    data: [
    	[52.5698, 30.584]
    ],
    colHeaders: true,
    columns: [
      {
        type: 'numeric',
        numericFormat: {
          pattern: {
              mantissa: 2
          }
        }
      },
       {
        type: 'numeric',
        numericFormat: {
          pattern: {
              mantissa: 1
          }
        }
      }
    ]
  });