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
{x: 4, value: 1.5, size: -2}
10
]);
11
12
series.displayNegative(true);
13
14
var state = series.normal();
15
16
var customHatchFill = anychart.graphics.hatchFill('divot', '#424242', 0.5, 20);
17
18
// Set negative hatch fill.
19
state.negativeHatchFill(customHatchFill);
20
21
chart.title('Set state hatch fill using an instance');
22
chart.container('container');
23
chart.draw();
24
});