ipysheet icon indicating copy to clipboard operation
ipysheet copied to clipboard

Jupyter handsontable integration

Results 84 ipysheet issues
Sort by recently updated
recently updated
newest added

It would be convenient to have a `shape` property in sheet objects. This would save from having to type `(sheet.rows, sheet.columns)`, which seems like a thing you'd want quite often.

When you export a sheet to a dataframe using `to_dataframe`, the index of the dataframe starts at 0, when the indices of the (unnamed) sheet rows start at 1. ```python...

When creating a new `ipysheet.sheet` using only `column_headers`, I would expect the number of columns to automatically adjust to the amount of entries in my headers list. However, the default...

Enhancement

It would be great if there was an undo function for when editing a sheet interactively. Ideally, this would just tie in with the Jupyter undo key combo (cmd-z for...

Enhancement

Adding the rootDir option means that the output files will be in `lib/` instead of `lib/src`. I also removed the redundant lib settings, given that we now have an es2105...

Handsontable uses [NumbroJS](http://numbrojs.com) for numbers formatting. It might be a good idea to implement our own number formatters using [d3-format](https://github.com/d3/d3-format), like ipywidgets and bqplot.

Enhancement

I would like ipysheet to go in the direction of static typing for cells. e.g. if a cell is of type `numeric`, it would not be possible to set a...

Here's a cool app I made to calculate sin(x) ![2019-04-08-154206](https://user-images.githubusercontent.com/223908/55751977-f0f5d800-5a14-11e9-9179-8d9e198ad85b.png) ```python from traitlets import HasTraits, observe, List, link, dlink import ipywidgets as widgets import ipysheet import numpy as np ROWS...

Version: https://github.com/QuantStack/ipysheet/commit/5065a5975c48ae56ef1d86c61e5174435f64cb0d ```python import ipywidgets as widgets import ipysheet sheet = ipysheet.Sheet(rows=1, columns=1) sheet.cells = ipysheet.Cell(value=[""], row_start=0, row_end=0, column_start=0, column_end=0, squeeze_column=False), output = widgets.Output() def observer(change): with output: print("{0} ->...

I am reconsidering overlapping cells support. I think it can be confusing for users, I find it confusing myself, and if we remove it I see possible performance improvements. Currently,...