This page is an introduction to Handsontable cell types:
The below example shows all built-in cell types (in other words, combinations of cell renderers and editors) available in Handsontable:
The same example also shows the declaration of custom cell renderers, namely yellowRenderer
            and
            greenRenderer.
          
A cell type is a predefined set of cell properties. Cell type defines what renderer and editor should be used for a cell. They can also define any different cell property that will be assumed for each matching cell.
For example writing:
          columns: [{
            type: 'text'
          }]
        Equals:
          columns: [{
            renderer: Handsontable.renderers.TextRenderer,
            editor: Handsontable.editors.TextEditor
          }]