Search code examples
highchartshtml-entitiesampersand

highcharts ampersand


How can I make the ampersand display properly under the first set of bars/columns in this chart:

http://jsfiddle.net/VxbrK/2/

It should be 'Apples & Oranges' not 'Apples & Oranges'.


Solution

  • You can set useHTML as true for labels.

    xAxis: {
                    labels:{
                        useHTML:true
                    }
                },