Posted 12 July 2019, 12:30 am EST
I want to set Cell Style in WjFlexSheet. So, I used to applyCellsStyle Method.
- “applyCellsStyle(cellStyle: ICellStyle, cells?: CellRange, isPreview?: boolean): void”
All properties of the ICellStyle Interfaces work except verticalAlign.
This is my code:
this._sprTemp.applyCellsStyle({
textAlign: 'left',
verticalAlign: 'middle',
fontFamily: 'Arial',
fontSize: '12px'
}, [new CellRange(0, 0, 50, 36)]);
Help me, please!