HTMLcopy
1
<div id="container"></div>
CSScopy
6
1
html, body, #container {
2
width: 100%;
3
height: 100%;
4
margin: 0;
5
padding: 0;
6
}
JavaScriptcopy
x
1
anychart.onDocumentReady(function () {
2
var chart = anychart.bubble();
3
4
var series = chart.bubble([
5
{x: 1, value: 1.0, size: 2},
6
{x: 2, value: 1.6, size: 7},
7
{x: 3, value: 1.2, size: 4},
8
{x: 4, value: 1.9, size: 3}
9
]);
10
11
// Set stroke.
12
series.stroke('#F44336', 3, '5 2', 'round');
13
14
chart.title('Set stroke parameters');
15
chart.container('container');
16
chart.draw();
17
});