Configure multilevel hierarchies - ICZ example - cross expand
Data source
HTML
<link rel="stylesheet" href="https://s3.amazonaws.com/flexmonster/2.3/demo.css">
<script src="https://cdn.flexmonster.com/flexmonster.js"></script>
<div id="pivot-container"></div>
JavaScript
let pivot = new Flexmonster({
container: "#pivot-container",
componentFolder: "https://cdn.flexmonster.com/",
width: "100%",
height: 550,
toolbar: true,
report: {
dataSource: {
type: "api",
url: "https://data.statistika.cz/api/dotaz",
index: "DO81",
},
slice: {
"reportFilters": [
{
"uniqueName": "CenDen",
"caption": "Rok sčítání",
"filter": {
"members": [
"cenden.[c210326]"
]
}
}
],
"rows": [
{
"uniqueName": "Území podle okresů"
}
],
"columns": [
{
"uniqueName": "IndicatorType",
"caption": "Ukazatele"
},
{
"uniqueName": "DruVlast",
"caption": "Druh vlastnictví"
},
{
"uniqueName": "[Measures]"
}
],
"measures": [
{
"uniqueName": "Indicator",
"caption": "Hodnota"
}
]
}
}
});