display the legend text in next row if the text is too long? - Javascript highcharts

Javascript examples for highcharts:Chart Legend

Description

display the legend text in next row if the text is too long?

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <title>Highcharts  LabelFormatter</title> 
      <meta name="viewport" content="width=device-width, initial-scale=1"> 
      <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> 
      <script type="text/javascript">
$(function() {//from  w w w  .j a  v  a  2s  .  c  o m
    var chart;
    $(document).ready(function() {
        // Build the chart
        chart = new Highcharts.Chart({
            chart: {
                renderTo: 'container',
                plotBackgroundColor: null,
                plotBorderWidth: null,
                plotShadow: false
            },
            legend: {
                layout: 'vertical',
                align: 'right',
                verticalAlign: 'bottom',
                x: 0,
                y: -10,
                labelFormatter: function() {
                    var legendName = this.name;
                    var match = legendName.match(/.{1,10}/g);
                return match.toString().replace(/\,/g,"<br/>");
            }
            },
            title: {
                text: 'Browser market shares at a specific website, 2010'
            },
            tooltip: {
                pointFormat: '{series.name}: <b>{point.percentage}%</b>',
                percentageDecimals: 1
            },
            plotOptions: {
                pie: {
                    allowPointSelect: true,
                    cursor: 'pointer',
                    dataLabels: {
                        enabled: false
                    },
                    showInLegend: true
                }
            },
            series: [{
                type: 'pie',
                name: 'Browser share',
                data: [
                    ['FirefoxFirefoxFirefoxFirefoxFirefox', 45.0],
                    ['IE', 26.8],
                {
                    name: 'Chrome',
                    y: 12.8,
                    sliced: true,
                    selected: true},
                    ['Safari', 8.5],
                    ['Opera', 6.2],
                    ['Others', 0.7]
                    ]}]
        });
    });
});

      </script> 
   </head> 
   <body> 
      <script src="https://code.highcharts.com/highcharts.js"></script> 
      <script src="https://code.highcharts.com/modules/exporting.js"></script> 
      <div id="container" style="min-width: 400px; height: 400px; margin: 0 auto"></div>  
   </body>
</html>

Related Tutorials