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.candlestick([
3
[new Date('28-Aug-07'), 511.53, 514.98, 505.79, 506.40],
4
[new Date('29-Aug-07'), 507.84, 513.30, 507.23, 512.88],
5
[new Date('30-Aug-07'), 512.36, 515.40, 510.58, 511.40],
6
[new Date('31-Aug-07'), 513.10, 516.50, 511.47, 515.25],
7
[new Date('01-Sep-07'), 515.02, 528.00, 514.62, 525.15]
8
]);
9
10
var xScale = chart.xScale();
11
12
// Set soft maximum.
13
xScale.softMaximum(new Date('04-Sep-07'));
14
15
chart.title('Set soft maximum');
16
chart.container('container');
17
chart.draw();
18
});