transport.connection.cube String

The cube name in the current data source.

Example - set the cube catalog name

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