Modify the Captions of the PivotGrid Measure Tag
Environment
Product | Progress® Kendo UI® PivotGrid for jQuery |
Operating System | Windows 10 64bit |
Visual Studio Version | Visual Studio 2017 |
Preferred Language | JavaScript |
Description
How can I modify the measure tag captions in the header of a Kendo UI PivotGrid widget?
Solution
The following example demonstrates how to access the Internet Sales Amount button and update its content.
<div id="example">
<div id="pivotgrid"></div>
<script>
$(document).ready(function () {
var pivotgrid = $("#pivotgrid").kendoPivotGrid({
filterable: true,
columnWidth: 200,
height: 580,
dataSource: {
type: "xmla",
columns: [{ name: "[Date].[Calendar]", expand: true }, { name: "[Product].[Category]" } ],
rows: [{ name: "[Geography].[City]" }],
measures: ["[Measures].[Internet Sales Amount]"],
transport: {
connection: {
catalog: "Adventure Works DW 2008R2",
cube: "Adventure Works"
},
read: "https://demos.telerik.com/olap/msmdpump.dll",
parameterMap: function(options, type) {
var query = kendo.data.transports.xmla.fn.options.parameterMap(options, type);
//modify the query here if needed
return query;
}
},
schema: {
type: "xmla"
},
error: function (e) {
alert("error: " + kendo.stringify(e.errors[0]));
}
},
dataBound: function() {
var tags = this.wrapper.find(".k-settings-measures > span.k-chip");
tags.each(function() {
var tag = $(this);
var name = tag.text().split(".");
var caption = name[name.length - 1];
caption = caption.substring(1, caption.length - 1);
//update text node
tag.find(".k-chip-text")[0].childNodes[0].nodeValue = caption;
});
}
}).data("kendoPivotGrid");
});
</script>
</div>