rows.name String

The hierarchical name of the rows.

Example - set the rows name

<script>
var dataSource = new kendo.data.PivotDataSourceV2({
  type: "xmla",
  rows: [{ name: "[Date].[Calendar]", expand: false }],
  transport: {
    connection: {
        catalog: "Adventure Works DW 2008R2",
        cube: "Adventure Works"
    },
    read: "https://demos.telerik.com/olap/msmdpump.dll"
  }
});
dataSource.fetch();
</script>
In this article