Untitled
Anonymous
plain_text
01/15/2025 1:45 PM
1.9 KB
12
Indexable
{data?.transform
? data.transform(
putThousandSeparator(
details[data.key]?.toFixed(2)
)
)
: putThousandSeparator(
details[data.key]?.toFixed(2)
)}
metrics: [
{
key: "premium",
label: "Premium",
values: [
{ key: `premiumAdjusted${selectedView}` },
{ key: `premiumUnadjusted${selectedView}` },
{ key: `premiumBenchmarkAdjusted${selectedView}` },
{ key: `premiumBenchmarkUnadjusted${selectedView}` },
],
},
{
key: "adequacy",
label: "Adequacy",
values: [
{
key: `priceAdequacy${selectedView}`,
transform: (value) => value && `${value}%`,
},
{
key: `priceAdequacy${selectedView}Unadjusted`,
transform: (value) => value && `${value}%`,
},
{
key: `priceAdequacy${selectedView}BenchmarkAdjusted`,
transform: (value) => value && `${value}%`,
},
{
key: `priceAdequacy${selectedView}BenchmarkUnadjusted`,
transform: (value) => value && `${value}%`,
},
],
},Editor is loading...
Leave a Comment