dynamically change scatter chart radius option - Javascript highcharts

Javascript examples for highcharts:Scatter Chart

Description

dynamically change scatter chart radius option

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <title>Highcharts Demo</title> 
      <meta name="viewport" content="width=device-width, initial-scale=1"> 
   </head> 
   <body> 
      <script src="https://code.highcharts.com/highcharts.src.js"></script> 
      <div id="container"></div> 
      <script type="text/javascript">
var chart = Highcharts.chart('container', {
   chart: {//from   w  w  w  .ja v a 2s.com
     type: 'scatter'
  },
  series: [{
    data: [{
       x: 5,
      y: 6,
      marker: {
         radius: 10
      }
    }, {
       x: 3,
      y: 1
    }]
  }]
});

      </script>  
   </body>
</html>

Related Tutorials