New to Kendo UI for jQueryStart a free 30-day trial

KpiStatusTemplate

configuration

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

For information about the tuple structure check this link. About the data item structure review this help topic.

kpiStatusTemplate

String|Function
<div id="pivotgrid"></div>

<script id="kpiStatusTemplate" type="text/x-kendo-template">
    # if (dataItem.value !== 0) { #
        <em>Open/Denied</em>
    # } else { #
        <strong>Hold</strong>
    # } #
</script>

<script>
$("#pivotgrid").kendoPivotGrid({
    kpiStatusTemplate: $("#kpiStatusTemplate").html(),
    dataSource: {
        type: "xmla",
        columns: [{ name: "[Date].[Calendar]", expand: true } ],
        measures: [{ name: "[Measures].[Internet Revenue Status]", type: "status"}],
        transport: {
            connection: {
                catalog: "Adventure Works DW 2008R2",
                cube: "Adventure Works"
            },
            read: {
                url: "https://demos.telerik.com/service/v2/olap/msmdpump.dll",
                dataType: "text",
                contentType: "text/xml",
                type: "POST"
            }
        },
        schema: {
            type: "xmla"
        }
    }
});
</script>
Not finding the help you need?
Contact Support