Customize primefaces chart

When you use extender you can change everything by js. Here is an example <p:lineChart … extender=”chartExtender”/> And on js file or in the page under Tag: function chartExtender() { // this = chart widget instance // this.cfg = options this.cfg.grid = { background: ‘transparent’, gridLineColor: ‘#303030’, drawBorder: false, }; } This is just an … Read more