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
// create a stage
4
stage = anychart.graphics.create("container");
5
6
// create a data set
7
var data = anychart.data.set([
8
["John", 10000, 12500],
9
["Jake", 12000, 15000],
10
["Peter", 13000, 16500],
11
["James", 10000, 13000],
12
["Mary", 9000, 11000]
13
]);
14
15
// map the data
16
var seriesData_1 = data.mapAs({x: [0], value: [1]});
17
var seriesData_2 = data.mapAs({x: [0], value: [2]});
18
19
// create a chart
20
var chart = anychart.column();
21
22
// create the first seriese
23
var series1 = chart.column(seriesData_1);
24
25
// create the second series, set the data and name
26
var series2 = chart.column(seriesData_2);
27
28
// set the chart position and title
29
chart.top(35);
30
chart.title("Vertical Charts: Changing On-the-Fly (Chart)");
31
32
// set the container
33
chart.container(stage);
34
35
// initiate drawing the chart
36
chart.draw();
37
38
// create a label for changing the orientation of the chart to vertical
39
createLabel("Vertical Orientation", 10, function() {
40
// change the orientation of the series
41
chart.getSeriesAt(0).isVertical(true);
42
chart.getSeriesAt(1).isVertical(true);
43
// change the orientation of the axes
44
chart.xAxis().orientation('left');
45
chart.yAxis().orientation('bottom');
46
});
47
48
// create a label for change the orientation of the chart to horizontal
49
createLabel("Horizontal Orientation", 155, function() {
50
// change the orientation of the series
51
chart.getSeriesAt(0).isVertical(false);
52
chart.getSeriesAt(1).isVertical(false);
53
// change the orientation of the axes
54
chart.xAxis().orientation('bottom');
55
chart.yAxis().orientation('left');
56
});
57
});
58
59
// a helper function for creating buttons
60
function createLabel(text, offset, action){
61
var label = anychart.standalones.label();
62
label.background({fill: "#1976d2"});
63
label.text(text);
64
label.fontColor("#fff");
65
label.padding(5);
66
label.parentBounds(offset, 5, 130, 100);
67
label.listen("click", action);
68
label.container(stage);
69
label.draw();
70
label.listen("mouseOver", function(){
71
label.background().fill("#1976d2 0.5");
72
document.body.style.cursor = "pointer";
73
label.draw();
74
});
75
label.listen("mouseOut", function(){
76
label.background().fill("#1976d2");
77
document.body.style.cursor = "auto";
78
label.draw();
79
});
80
return label;
81
};