| <!doctype html>
|
| <html lang="en">
|
| <head>
|
| <meta charset="UTF-8">
|
| <meta content="IE=edge" http-equiv="X-UA-Compatible">
|
| <meta content="width=device-width, initial-scale=1" name="viewport">
|
| <title>BCT Vertical Bubble Chart</title>
|
| <link href="https://playground.anychart.com/docs/samples/BCT_Vertical_Bubble_Chart/iframe" rel="canonical">
|
| <meta content="Bubble Chart,Statistical Data,Vertical Chart" name="keywords">
|
| <meta content="AnyChart - JavaScript Charts designed to be embedded and integrated" name="description">
|
| |
| |
| |
|
|
| <link href="_deps/cdn.anychart.com/releases/8.14.1/css/anychart-ui.min_qe95e7e741b.css" rel="stylesheet" type="text/css">
|
| <style>html, body, #container {
|
| width: 100%;
|
| height: 100%;
|
| margin: 0;
|
| padding: 0;
|
| }</style>
|
| </head>
|
| <body>
|
| <div id="container"></div>
|
| <script src="_deps/cdn.anychart.com/releases/8.14.1/js/anychart-base.min_qe95e7e741b.js"></script>
|
| <script src="_deps/cdn.anychart.com/releases/8.14.1/js/anychart-exports.min_qe95e7e741b.js"></script>
|
| <script src="_deps/cdn.anychart.com/releases/8.14.1/js/anychart-ui.min_qe95e7e741b.js"></script>
|
| <script type="text/javascript">anychart.onDocumentReady(function () {
|
|
|
|
|
| var data = [
|
| {x: 2001, value: 637, size: 7},
|
| {x: 2002, value: 202, size: 14},
|
| {x: 2003, value: 168, size: 8},
|
| {x: 2004, value: 448, size: 18},
|
| {x: 2005, value: 300, size: 2}
|
| ];
|
|
|
|
|
| var chart = anychart.vertical();
|
|
|
|
|
| var series = chart.bubble(data);
|
|
|
|
|
| chart.title("Vertical Bubble Chart");
|
|
|
|
|
| chart.container("container");
|
|
|
|
|
| chart.draw();
|
| });</script>
|
| </body>
|
| </html> |