Open duynguyen2411 opened 5 years ago
I add an option NumberEditor into a TableColumn of my Data Table. But there isn't a spinner's button to control value of cell selected.
source_bezier = ColumnDataSource({‘x’: [200, 100, 300], ‘y’: [100, 150, 150], ‘size’:[5,9,10],‘color’: [‘red’, ‘green’, ‘yellow’]}) columns = [TableColumn(field=“x”, title=“x”), TableColumn(field=“y”, title=“y”), TableColumn(field=“size”, title=“size”,editor=NumberEditor(step=0.1)) , TableColumn(field=‘color’, title=‘color’)] table = DataTable(source=source_bezier, columns=columns, editable=True, height=200)
This is the better, more detailed issue. Keeping this one and closing the other.
Thanks Bryan
I add an option NumberEditor into a TableColumn of my Data Table. But there isn't a spinner's button to control value of cell selected.