Быстрый вопрос с моей стороны, я написал код, чтобы выделить ячейку при определенных c обстоятельствах.
Не могли бы вы изменить его для вывода числа в процентах с двумя десятичными знаками?
{
"$schema": "https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json <https://developer.microsoft.com/json-schemas/sp/column-formatting.schema.json> ",
"debugMode": true,
"elmType": "div",
"attributes":
{
"class": "=if(@currentField >= 0.5, 'sp-field-severity--good', if(@currentField >= 0.25,'sp-field-severity--warning', if(@currentField < 0.25,'sp-field-severity--blocked', ''))" },
"children": [
{
"elmType": "span",
"style":
{
"display": "inline-block",
"padding": "0 4px"
},
"attributes":
{
"iconName": "=if(@currentField == 'Scheduled','CheckMark', if(@currentField == 'In Process', 'Forward', if(@currentField == 'Cancelled', 'Error', if(@currentField == 'Rescheduled','Warning','')"
}
},
{
"elmType": "span",
"txtContent": "@currentField"
}
]
}