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 stage = anychart.graphics.create("container");
3
4
var pyramidChart = anychart.pyramid([
5
{x: "Physical", value: 125},
6
{x: "Data Link", value: 125},
7
{x: "Network", value: 125},
8
{x: "Transport", value: 125},
9
{x: "Session", value: 125},
10
{x: "Presentation", value: 125},
11
{x: "Application", value: 390, label: {anchor: "centerTop"}}
12
]);
13
pyramidChart.labels({position: "inside"});
14
pyramidChart.bounds(0, 20, "50%", "100%");
15
pyramidChart.legend(false);
16
pyramidChart.hoverHatchFill("zigZag", "#424242", 0.5, 25);
17
pyramidChart.container(stage);
18
pyramidChart.draw();
19
20
var funnelChart = anychart.funnel([10, 3, 7, 10]);
21
funnelChart.bounds("50%", 20, "50%", "100%");
22
funnelChart.legend(false);
23
funnelChart.labels({position: "inside"});
24
25
// Get hover hatchFill.
26
var pieChartHatchFill = pyramidChart.hoverHatchFill();
27
28
funnelChart.hatchFill(pieChartHatchFill);
29
funnelChart.container(stage);
30
funnelChart.draw();
31
32
var customTitle = anychart.standalones.title();
33
customTitle.text("Get and use hover hatchFill.");
34
customTitle.container(stage);
35
customTitle.draw();
36
});