Flexmonster - css example.

Table width example.

by Flexmonster Pivot Table

HTML

<link rel="stylesheet" href="https://s3.amazonaws.com/flexmonster/2.3/demo.css">
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
<script src="https://s3.amazonaws.com/flexmonster/2.3/flexmonster.js"></script>

<div id="pivot-container"></div>

CSS

/* GRID */

#fm-grid-view span,
#fm-grid-view div,
#fm-grid-view td {
	font-family: Verdana !important;
}

.fm-sheet-header {
	background-color: #A4D53A !important;
}

.fm-header {
	background-color: #263C53 !important;
}

.fm-cell {
	border: 1px solid #DDDDDD !important;
}

.fm-total {
	color: #263C53 !important;
	text-decoration: underline;
}


/* CHARTS */

.fm-charts-color-1 {
    fill: #A4D53A !important;
}

.fm-charts-color-2 {
    fill: #263C53 !important;
}

.fm-charts-color-3 {
    fill: #4897F1 !important;
}

.fm-charts-color-4 {
    fill: none !important;
}

JavaScript

var pivot = $("#pivot-container").flexmonster({
  componentFolder: "https://s3.amazonaws.com/flexmonster/2.3/",
  width: "100%",
  height: 430,
  toolbar: true,
  report: {
    dataSource: {
      dataSourceType: "csv",
      filename: "https://s3.amazonaws.com/flexmonster/2.3/data/data.csv"
    },
    slice: {
      columns: [{
        uniqueName: "Color"
      }],
      rows: [{
        uniqueName: "Country"
      }, {
        uniqueName: "[Measures]"
      }],
      measures: [{
        uniqueName: "Price",
        format: "currency"
      }, {
        uniqueName: "Discount",
        format: "currency"
      }],
    },
    formats: [{
      name: "currency",
      currencySymbol: "$",
      currencySymbolAlign: "left",
      thousandsSeparator: ",",
      decimalPlaces: 2
    }]
    ,
    options: {
      configuratorActive: false,
      showGrandTotals: "off"
    }
  }
});