davidguttman/react-pivot

Effect of defaultStyles option

tanyona opened this issue · 2 comments

I'm using the standalone react-pivot. Tried setting defaultStyles as true or false but not seeing any difference. What is the expected effect and is there anything extra I need to do to see the difference. A snippet of my configuration is as below.

<script type="text/javascript" src="${pageContext.request.contextPath}/js/react-pivot-1.18.3/react-pivot-standalone-1.18.2.min.js"></script>

var defaultStyles=false; //true, false no difference? looks good either way

ReactPivot(document.getElementById('reactPivotOutput'), {
	rows: rows,
	dimensions: dimensions,
	calculations: calculations,
	reduce: reduce,		
	defaultStyles: defaultStyles
});

Do I need to put the style.css file in a certain location to see the difference. I'm currently not including it.

You can change the settings and see the difference here: http://codepen.io/anon/pen/ygjLvm?editors=1010

Here's defaultStyles: false:
image

Here's defaultStyle: true:
image

Sure. Works as advertised. Perhaps a caching issue on my end.