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(4).fill("#c6e3f9").stroke("#3e5ca6");
12
13
// set the titles of the axes
14
chart
15
.yAxis()
16
.title()
17
.enabled(true)
18
.useHtml(true)
19
.text(
20
'<span style = "color: #b3b3b3;">International sales ($ in millions)</span>'
21
);
22
chart
23
.xAxis()
24
.title()
25
.enabled(true)
26
.useHtml(true)
27
.text(
28
'<span style = "color: #b3b3b3;">Domestic sales ($ in millions)</span>'
29
);
30
31
// set the chart title
32
chart
33
.title()
34
.enabled(true)
35
.useHtml(true)
36
.text(
37
'<span style = "color: #c6e3f9; font-size:18px;">Top 1000 Highest Grossing Hollywood Movies: Domestic vs. International Sales</span>'
38
);
39
40
// customize the scales
41
chart.xScale().ticks({ interval: 200 });
42
chart.yScale().ticks({ interval: 200 });
43
44
// configure the tooltip
45
marker.tooltip().titleFormat(function () {
46
return this.getData("title");
47
});
48
marker
49
.tooltip()
50
.format(function () {
51
return (
52
"\nTOTAL SALES: " +
53
"$" +
54
this.getData("totalSales") +
55
"M" +
56
"\nDomestic sales: " +
57
"$" +
58
this.x +
59
"M" +
60
"\nInternational sales: " +
61
"$" +
62
this.value +
63
"M"
64
);
65
});
66
67
// enable the grid lines
68
chart.yGrid(true);
69
chart.xGrid(true);
70
71
// customize the grid stroke
72
chart.yGrid().stroke({ color: "#071d58", dash: "4 5" });
73
chart.xGrid().stroke({ color: "#071d58", dash: "4 5" });
74
75
// set the background color
76
chart.background().fill("#0d468f");
77
78
// set the container id for the chart
79
chart.container("container");
80
81
// initiate drawing the chart
82
chart.draw();
83
84
}
85
);
86
});