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.bounds(0, 20, "50%", "100%");
14
pyramidChart.labels({position: "inside"});
15
pyramidChart.stroke("#4CAF50", 3);
16
pyramidChart.container(stage);
17
pyramidChart.draw();
18
19
var funnelChart = anychart.funnel([10, 3, 7, 10, 5]);
20
funnelChart.bounds("50%", 20, "50%", "100%");
21
funnelChart.labels({position: "inside"});
22
23
// Get stroke.
24
var pyramidChartStroke = pyramidChart.stroke();
25
26
funnelChart.stroke(pyramidChartStroke);
27
funnelChart.container(stage);
28
funnelChart.draw();
29
30
var customTitle = anychart.standalones.title();
31
customTitle.text("Get and use chart stroke.");
32
customTitle.container(stage);
33
customTitle.draw();
34
});