Posted 30 June 2021, 12:07 am EST
Hi,
I am having a scenario where I will load the spreadsheet using the fromJson method and I need to give multiple named styles to a single cell as shown in the below example.
Consider the following json.
“sheets”: {
“Sheet1”: {
“data”: {
“dataTable”: {
“0”: {
“0”: {
“value”: “some value”,
“style”: [“STYLE1”, ""STYLE2] // Is there a way to achieve this functionality ?
}
}
}
}
}
},
“namedStyles”: [
{
“name”: “STYLE1”,
// some styles
},
{
“name”: “STYLE2”,
// some styles
}
]
Regards,
Shanmukha Vangaru