Details
Description
Change the graph labels used to support Unicode characters by removing the HTML-encoding set on them. They still must be safe for use in JavaScript, so escape the quotes:
i.e. Update
"key":"<?php $this->Html->_($data['name']);?>",
to:
"key":"<?php echo str_replace('"', '\"', $this->Html->ifSet($data['name']));?>",