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