Change color series by its value - Javascript highcharts

Javascript examples for highcharts:Chart Series

Description

Change color series by its value

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <meta name="viewport" content="width=device-width, initial-scale=1"> 
      <script type="text/javascript" src="https://code.jquery.com/jquery-1.9.1.js"></script> 
      <script type="text/javascript">
$(function () {/*from  w w  w . j ava  2  s  .c  om*/
        $('#container').highcharts({
            chart: {
                type: 'bar'
            },
            tooltip: {
                valueSuffix: ' millions'
            },
            series: [{
                name: 'Year 1800',
                data: [107, 31, 635, 203, 2]
            }]
        },function(chart){
            var max = 200;
            $.each(chart.series[0].data,function(i,data){
                if(data.y > max)
                    data.update({
                        color:'red'
                    });
            });
        });
    });

      </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