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
3
// the data used in this sample can be obtained from the CDN
4
// https://cdn.anychart.com/csv-data/csco-daily.js
5
// create a data table using this data
6
var dataTable = anychart.data.table();
7
dataTable.addData(get_csco_daily_short_data());
8
9
// map the data
10
var mapping = dataTable.mapAs({"value": 4});
11
12
// create a stock chart
13
var chart = anychart.stock();
14
15
// create a plot on the chart
16
var plot = chart.plot(0);
17
18
// create a line series
19
var lineSeries = plot.line(mapping);
20
lineSeries.name("CSCO");
21
22
// access the annotations() object of the plot to work with annotations
23
var controller = plot.annotations();
24
25
// create the first Vertical Channel annotation and configure its visual settings
26
var verticalChannel1 = controller.verticalRange({
27
xAnchor: "2007-01-07",
28
secondXAnchor: "2007-09-23",
29
hovered: {
30
fill: "#398cae 0.3",
31
stroke: "2 #ff0000"
32
},
33
selected: {
34
fill: "#398cae 0.3",
35
hatchFill: "forward-diagonal",
36
stroke: "4 #ff0000"
37
}
38
});
39
40
// create the second Vertical Channel annotation
41
var verticalChannel2 = controller.verticalRange();
42
43
// set the position of the second annotation
44
verticalChannel2.xAnchor("2004-01-11");
45
verticalChannel2.secondXAnchor("2005-10-30");
46
47
// configure the visual settings of the second annotation
48
verticalChannel2.normal().fill("none");
49
verticalChannel2.normal().stroke("#006600", 1, "10 2");
50
verticalChannel2.hovered().stroke("#00b300", 2, "10 2");
51
verticalChannel2.selected().stroke("#00b300", 4, "10 2");
52
53
// set the chart title
54
chart.title("Vertical Channel: Visual Settings");
55
56
// set the container id
57
chart.container("container");
58
59
// initiate drawing the chart
60
chart.draw();
61
});