I have recreated the example page shown in the primefaces showcase at:
http://www.primefaces.org/showcase/ui/chart/pie.xhtml
The pie chart successfully displ
I have faced the same problem. Using an extender fixed it :
Facelet :
<script type="text/javascript">
function pieExtender() {
this.cfg.highlighter = {
show: true,
tooltipLocation: 'n',
useAxesFormatters: false,
formatString: '%s = %d'
};
}
</script>
Managed Bean :
pieModel.setExtender("pieExtender");
For more tweaking see : http://www.jqplot.com/docs/files/plugins/jqplot-highlighter-js.html