kpiStatusTemplate String|Function
The template which renders the content of the KPI Status
value. By default renders "open", "hold" and "denied" status icons.
The fields which can be used in the template are:
- columnTuple - the tuple of the corresponding column header cell
- rowTuple - the tuple of the corresponding row header cell
- measure - the value of the data cell measure
- dataItem - the data item itself
Example - specify a custom template for the KPI Status measure
<div id="pivotgrid"></div>
<script>
$("#pivotgrid").kendoPivotGridV2({
kpiStatusTemplate:({ dataItem }) => `${dataItem.value !== 0 ? "<em>Open/Denied</em>" : "<strong>Hold</strong>"}`,
dataSource: {
type: "xmla",
columns: [{ name: "[Date].[Calendar]", expand: true } ],
rows: [{ name: "[Geography].[City]" }],
measures: [{ name: "[Measures].[Internet Revenue Status]", type: "status"}],
transport: {
connection: {
catalog: "Adventure Works DW 2008R2",
cube: "Adventure Works"
},
read: {
url: "https://demos.telerik.com/olap/msmdpump.dll",
dataType: "text",
contentType: "text/xml",
type: "POST"
}
},
schema: {
type: "xmla"
}
}
});
</script>