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
// set stage
4
var stage = anychart.graphics.create("container");
5
6
// custom scale
7
var customScale = anychart.scales.linear();
8
customScale.minimum(8000);
9
customScale.maximum(20000);
10
var customTicks = customScale.ticks();
11
customTicks.interval(1000);
12
13
// set position and data for the first chart
14
var series_2003 = anychart.column([
15
["John" , 10000],
16
["Jake" , 12000],
17
["Peter" , 18000],
18
["James" , 11000],
19
["Mary" , 9000]
20
]);
21
series_2003.bounds(0, 0, "50%", "100%");
22
series_2003.title(false);
23
24
// set custom scale as y scale for the chart
25
series_2003.yScale(customScale);
26
27
// adjust axes settings
28
var yAxis2003 = series_2003.yAxis();
29
yAxis2003.orientation("right");
30
var xAxis2003 = series_2003.xAxis();
31
xAxis2003.title("Year 2003");
32
33
// set scale minimum
34
var yScale2003 = series_2003.yScale();
35
yScale2003.minimum(0);
36
37
// set stage
38
series_2003.container(stage);
39
40
// draw chart
41
series_2003.draw();
42
43
44
// set position and data for the second chart
45
var series_2004 = anychart.column([
46
["John" , 12000],
47
["Jake" , 15000],
48
["Peter" , 16000],
49
["James" , 13000],
50
["Mary" , 19000]
51
]);
52
series_2004.title(false);
53
series_2004.bounds("50%", 0, "50%", "100%");
54
55
// set custom scale as y scale for the chart
56
series_2004.yScale(customScale);
57
58
// adjust axes settings
59
var yAxis2004 = series_2004.yAxis();
60
yAxis2004.title("Sales");
61
var xAxis2004 = series_2004.xAxis();
62
xAxis2004.title("Year 2004");
63
64
// set scale minimum
65
var yScale2004 = series_2004.yScale();
66
yScale2004.minimum(0);
67
68
// set container
69
series_2004.container(stage);
70
71
// draw chart
72
series_2004.draw();
73
});