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 data
4
var data = [
5
["January", 10000],
6
["February", 12000],
7
["March", 18000],
8
["April", 11000],
9
["May", 9000]
10
];
11
12
// create a chart
13
var chart = anychart.line();
14
15
// create a line series and set the data
16
var series = chart.line(data);
17
18
// set scale mode
19
chart.xScale().mode('continuous');
20
21
// set the chart title
22
chart.title("Line Chart: Scale Mode to Remove Gaps");
23
24
// set the titles of the axes
25
var xAxis = chart.xAxis();
26
xAxis.title("Month");
27
var yAxis = chart.yAxis();
28
yAxis.title("Sales, $");
29
30
// set the container id
31
chart.container("container");
32
33
// initiate drawing the chart
34
chart.draw();
35
});