Column Resizing
22 May 20171 minute to read
Allows you to resize the column by changing its width while holding and dragging the column border using the mouse.
You can enable column resizing option in PivotGrid by setting the enableColumnResizing
property to true.
<script type="text/babel">
//...
$(function(){
ReactDOM.render(
<EJ.PivotGrid id="PivotGrid" enableColumnResizing= {true}></EJ.PivotGrid>,
document.getElementById('PivotGrid1')
);
});
</script>