Make cell borders thicker
Custom CSS
by abufiddle
HTML
<link rel="stylesheet" href="https://s3.amazonaws.com/flexmonster/2.3/demo.css">
<script src="https://cdn.flexmonster.com/flexmonster.js"></script>
<script
src="http://code.jquery.com/jquery-3.3.1.min.js"></script>
<div id="pivot-container"></div>
<button value="click" id="getrpt"/>
CSS
#fm-grid-view .fm-cell {
border-width: 2px !important;
}
JavaScript
var pivot = new Flexmonster({
container: "#pivot-container",
componentFolder: "https://cdn.flexmonster.com/",
width: "100%",
height: 430,
toolbar: true,
report: {
dataSource: {
data: getData()
},
formats: [
{name: "currency", decimalPlaces: 2, currencySymbol: "$",
currencySymbolAlign: "right"}
],
slice: {
rows: [{ uniqueName: "Color" }],
columns: [
{ uniqueName: "[Measures]" }
],
measures: [
{ uniqueName: "Price", aggregation: "sum", format: "currency"}
]
},
options: {
grid: {
showHeaders:false
},
chart :{
showMeasures :false
}
}
}
});
debugger
$("#getrpt").click(function(){
alert("hi");
})
function getData() {
return [{
"Color": "green",
"M": "September",
"W": "Wed",
"country": "Canada",
"state": "Ontario",
"city": "Toronto",
"Price": 174,
"Quantity": 22
}, {
"Color": "red",
"M": "March",
"W": "Mon",
"Time": "1000",
"country": "USA",
"state": "California",
"city": "Los Angeles",
"Price": 1664,
"Quantity": 19
}, {
"Color": "red",
"M": "January",
"W": "Mon",
"country": "Canada",
"state": "Quebec",
"city": "Montreal",
"Price": 1190,
"Quantity": 292
}, {
"Color": "green",
"D": "04/08/2014",
"M": "August",
"W": "Fri",
"Time": "1000",
"country": "USA",
"state": "California",
"city": "Los Angeles",
"Price": 1222,
"Quantity": 730
}, {
"Color": "white",
"M": "March",
"W": "Wed",
"country": "USA",
"state": "California",
"city": "Los Angeles",
"Price": 7941,
"Quantity": 73
}, {
"Color": "red",
"M": "August",
"W": "Wed",
"country": "Canada",
"state": "Ontario",
"city": "Toronto",
"Price": 6829,
"Quantity": 19
}, {
"Color": "green",
"M": "January",
"W": "Wed",
"country": "Canada",
...