sortable Boolean|Object
(default: false)
If set to true
the user could sort the widget by using the field menu.
Example - enable sorting
<div id="configurator"></div>
<script>
$("#configurator").kendoPivotConfiguratorV2({
sortable: true,
dataSource: {
type: "xmla",
columns: [{ name: "[Date].[Calendar]", expand: true }, { name: "[Geography].[City]" } ],
rows: [{ name: "[Product].[Product]" }],
measures: ["[Measures].[Internet Sales Amount]"],
transport: {
connection: {
catalog: "Adventure Works DW 2008R2",
cube: "Adventure Works"
},
read: 'https://demos.telerik.com/olap/msmdpump.dll'
}
}
});
</script>