Untitled
unknown
plain_text
9 months ago
1.4 kB
7
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