Search code examples
javascriptjqueryhtmlcsscanvasjs

Non-breaking spaces in CanvasJS


I'm currently working on a project involving both Bootstrap and CanvasJS making a doughnut chart.

Is it possible to make the course title and/or the legend text non-breaking text? I’ve been trying to include   but it doesn’t seem to be working. The result is “Legend String” and “Doughnut Title” gets put on my doughnut chart:

var reviewsData = [
{ y: courses_reviewed, legendText: Legend String}
];

renderMyChart(trackingContainer, trackingData, “Doughnut Title”);

Here’s a JFIDDLE demonstrating the above: http://jsfiddle.net/gratiafide/n6r5gsqq/2/

Thanks in advance for your help.


Solution

  • You can use \xA0 instead of   http://jsfiddle.net/9mbhsmv6/