HTMLcopy
1
<div id="container"></div>
CSScopy
8
1
html,
2
body,
3
#container {
4
width: 100%;
5
height: 100%;
6
margin: 0;
7
padding: 0;
8
}
JavaScriptcopy
x
1
anychart.onDocumentReady(function () {
2
anychart.data.loadJsonFile(
3
"https://gist.githubusercontent.com/shacheeswadia/dceaadd5fb4ea27cd9975ff39e9f98f4/raw/6baac571527d9b13e397cfb3d982d7942246dcc0/scatterPlotData.json",
4
function (data) {
5
6
// create a scatter chart
7
let chart = anychart.scatter();
8
9
// create and configure markers
10
let marker = chart.marker(data);
11
marker.type("circle").size(2);
12
13
// set the titles of the x and y axis
14
chart.yAxis().title("International sales ($ in millions)");
15
chart.xAxis().title("Domestic sales ($ in millions)");
16
17
// set the chart title
18
chart.title(
19
"Top 1000 Highest Grossing Hollywood Movies: Domestic vs. International Sales"
20
);
21
22
// customize the scales
23
chart.xScale().minimum(0).maximum(2200).ticks({ interval: 200 });
24
chart.yScale().minimum(0).maximum(2200).ticks({ interval: 200 });
25
26
// configure the tooltip
27
marker.tooltip().titleFormat(function () {
28
return this.getData("title");
29
});
30
marker
31
.tooltip()
32
.format(function () {
33
return (
34
"\nTOTAL SALES: " +
35
"$" +
36
this.getData("totalSales") +
37
"M" +
38
"\nDomestic sales: " +
39
"$" +
40
this.x +
41
"M" +
42
"\nInternational sales: " +
43
"$" +
44
this.value +
45
"M"
46
);
47
});
48
49
// set the container id for the chart
50
chart.container("container");
51
52
// initiate drawing the chart
53
chart.draw();
54
55
}
56
);
57
});