I want feature like cell formatting by user , user can change color, font by him/her self .How can i do this??
Like this.
Manual cell color, font change option
Hi @suman.dutta
we do not have any toolbar yet, but you can do all of the operations
- change font (style / color)
- change background
- format cell content
while using our API. We also offer spreadsheet icons https://handsontable.com/docs/8.0.0/demo-spreadsheet-icons.html
Have you already tested Handsontable?
How to allow user to customize
- change font (style / color)
- change background
- format cell content
this things ?
Generally, you can use cells method to attach a className
or other cellProperties
(like cell format). Below are a couple of demos
- Coloring background for cells via context menu (opened on RMB) - https://jsfiddle.net/1nt7t429/
- Change font family with a context menu (opened on RMB) - http://jsfiddle.net/handsoncode/d74mLb80/
- Conditional formatting based on the cell content - https://jsfiddle.net/98tdnhmz/
- Conditional formatting for numeric cells - https://jsfiddle.net/qLt96j3e/
- Numeric cell formatting - http://jsfiddle.net/2dvx0jfn/
Thanks it will help.