Posted 10 April 2018, 3:45 pm EST
Hi,
I’m trying to apply border styles to a flexsheet using this code:
this.flexSheet.applyCellsStyle({
color: 'red',
borderTopColor: 'black',
borderBottomColor: 'black',
borderLeftColor: 'black',
borderRightColor: 'black',
borderTopStyle: 'solid',
borderBottomStyle: 'solid',
borderLeftStyle: 'solid',
borderRightStyle: 'solid',
borderTopWidth: '1px',
borderBottomWidth: '1px',
borderLeftWidth: '1px',
borderRightWidth: '1px'
});
The only style that works is the “color: ‘red’”. Why the border styles aren’t working and how to do this? I’m creating a custom ribbon and I need an easy way to implement this.
