JSFiddle - React, Tailwind, and code Playground
by Flexmonster Pivot Table
HTML
<script src="https://cdn.flexmonster.com/flexmonster.js"></script>
<div id="pivot-container"></div>
JavaScript
var pivot = new Flexmonster({
container: "pivot-container",
componentFolder: "https://cdn.flexmonster.com/",
width: "100%",
height: 500,
toolbar: true,
customizeChartElement: customizeChartElementFunction,
report: {
dataSource: {
filename: "data/data.csv"
},
slice: {
rows: [
{ uniqueName: "Country" }
],
measures: [
{ uniqueName: "Price", aggregation: "sum" }
]
},
options: {
viewType: "charts"
}
}
});
function customizeChartElementFunction(element, data) {
element.getElementsByTagName("title")[0].innerHTML = "Custom text here"
}