Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
  <link rel="stylesheet" type="text/css" href="//www.shieldui.com/shared/components/latest/css/shieldui-all.min.css" />
    <script type="text/javascript" src="//www.shieldui.com/shared/components/latest/js/jquery-1.10.2.min.js"></script>
    <script type="text/javascript" src="//www.shieldui.com/shared/components/latest/js/shieldui-all.min.js"></script>
  
</head>
<body>
  <div id="chart"></div>  
</body>
</html>
 
$(function() {
  $("#chart").shieldChart({            
            axisX: {                
                endOffset: 0.05,
                startOffset: 0.05
            },               
            dataSeries: [{
                seriesType: "bubble",
                collectionAlias: "metrics",
                data: [
                     {
                         x: 3.45,
                         y: 26.4,
                         size: 26.4
                     },
                     {
                         x: 20.69,
                         y: 60.8,
                         size: 60.8
                     },
                     {
                         x: 60.02,
                         y: 86.8,
                         size: 86.8
                     },
                     {
                         x: 101.3,
                         y: 100,
                         size: 100
                     },
                     {
                          x: 151.7,
                          y: 112,
                          size: 112
                     }
                ]
            }]
        });
  
  });
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
davejohnson77pro
0viewers