I'm using angular spreadsheet and want to change selectionSettings of the spreadsheet on two different function clicks. For first button, it will change the selectionSettings mode to None and for second one, it will be changed to Multiple.
I'm achieving this via this code snippet:
this.spreadsheetObj.selectionSettings.mode = 'None'; // for first button click
this.spreadsheetObj.selectionSettings.mode = 'Multiple'; // for second button click
It is changing the mode appropriately but the I can't see selection styles for selected cells anymore.
I'm seeing only the green dot but no background styling for selected range. I inspected and found the e-selection element is not being generated if i change selectionsettings via typesript
Any solution for this?? Please tell asap