rows Array
The configuration of the row axis members. An array of JavaScript objects or strings. A JavaScript objects are interpreted as rows descriptors. Strings are interpreted as the hierarchical name of the member.
Example - set the columns
<script>
var dataSource = new kendo.data.PivotDataSourceV2({
type: "xmla",
rows: ["[Date].[Calendar]"],
transport: {
connection: {
catalog: "Adventure Works DW 2008R2",
cube: "Adventure Works"
},
read: "https://demos.telerik.com/olap/msmdpump.dll"
}
});
dataSource.fetch();
</script>