Dear All Builders,
is it possible to change the size of the KPI-Name config element in a KPI Element? I use multiple KPIs and the name is quite small…
Code:
{
"id": "kpi_purchase_requisitions",
"type": "kpi",
"source": "unresolved_po_requisitions",
"sourceOptions": {
"sql": "SELECT COUNT(*) as kpi_value, 'Unresolved Purchase Requisitions (Authorized Today)' as kpi_name, ' ' as unit, 1 as index from inputTable i where rnl_cfo_budget_approved_at_ts = today UNION SELECT CASE WHEN d.val1 / d.val2 IS NULL THEN 0 ELSE d.val1 / d.val2 END as kpi_value, 'Share of All Authorized Requisitions (Today)' as kpi_name, '%' as unit, 2 as index FROM ( SELECT COUNT(*) as val1, MAX(total_open_po_requisitions) as val2 from inputTable i where rnl_cfo_budget_approved_at_ts = today ) as d order by index "
},
"config": {
"color": "#becd32",
"kpiName": {
"column": "kpi_name"
},
"value": {
"column": "kpi_value"
},
"unit": {
"column": "unit"
},
"layout": {
"orientation": "vertical"
}
}
}
Thanks in advance