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
// The data used in this sample can be obtained from the CDN
3
// https://cdn.anychart.com/samples/quadrant-charts/bi-services-comparison/data.json
4
anychart.data.loadJsonFile(
5
'https://cdn.anychart.com/samples/quadrant-charts/bi-services-comparison/data.json',
6
function (data) {
7
var $tooltip = $(
8
'<div class=\'custom-tooltip\'>' +
9
'<h1></h1><div class=\'subtitle\'></div>' +
10
'<p class=\'description\'></p>' +
11
'</div>'
12
);
13
14
var companiesData = data;
15
var dataSet = anychart.data.set(companiesData);
16
17
// create quadrant chart
18
var chart = anychart.quadrant();
19
20
// set chart padding
21
chart.padding(35);
22
23
// create marker series
24
var markers = chart.marker(dataSet);
25
// set labels settings
26
markers
27
.labels()
28
.enabled(true)
29
.fontFamily('Arial')
30
.fontColor('#546e7a')
31
.position('right')
32
.anchor('left-center')
33
.offsetX(5)
34
.offsetY(0)
35
.format('{%Name}');
36
// disabled tooltip
37
markers.tooltip(false);
38
39
// set quarters settings
40
chart.quarters({
41
rightTop: {
42
title: {
43
text: 'LEADERS',
44
fontColor: '#ff8f00',
45
padding: 10
46
}
47
},
48
rightBottom: {
49
title: {
50
text: 'VISIONARIES',
51
fontColor: '#ff8f00',
52
padding: 10
53
}
54
},
55
leftTop: {
56
title: {
57
text: 'CHALLENGERS',
58
fontColor: '#ff8f00',
59
padding: 10
60
}
61
},
62
leftBottom: {
63
title: {
64
text: 'NICHE PLAYERS',
65
fontColor: '#ff8f00',
66
padding: 10
67
}
68
}
69
});
70
71
// create first label in the lower-left quarter
72
chart
73
.quarters()
74
.leftBottom()
75
.label(0)
76
.enabled(true)
77
.useHtml(true)
78
.rotation(-90)
79
.position('left-bottom')
80
.anchor('left-center')
81
.offsetX(-20)
82
.text('Power to Perform →');
83
84
// create second label in the lower-left quarter
85
chart
86
.quarters()
87
.leftBottom()
88
.label(1)
89
.enabled(true)
90
.useHtml(true)
91
.position('left-bottom')
92
.anchor('left-center')
93
.offsetY(20)
94
.text('Entirety of Representation →');
95
96
// set chart container id
97
chart.container('container');
98
// initiate chart drawing
99
chart.draw();
100
101
// add custom tooltip to chart container
102
chart.listen('chartDraw', function () {
103
var $container = $(this.container().getStage().container());
104
105
$container.append($tooltip);
106
});
107
108
// event for mouse over a point
109
chart.listen('pointMouseMove', function (e) {
110
var clientX = e.originalEvent.offsetX;
111
var clientY = e.originalEvent.offsetY;
112
var delta = 35;
113
114
// prevent tooltip from leaving the screen
115
var left = clientX - $tooltip.width() / 2;
116
if (left + $tooltip.width() > chart.container().width()) { left = chart.container().width() - $tooltip.width(); }
117
if (left < 0) left = 0;
118
119
// move tooltip
120
$tooltip.css({
121
left: left,
122
top: clientY - delta - $tooltip.height()
123
});
124
125
// show tooltip
126
$tooltip.show();
127
});
128
129
// event for mouse leaving point
130
chart.listen('pointMouseOut', function () {
131
// hide tooltip
132
$tooltip.hide();
133
});
134
135
// event for point hover
136
chart.listen('pointsHover', function (e) {
137
var item = companiesData[e.currentPoint.index];
138
putDataInTooltip(item);
139
});
140
141
// Place data for hovered point in custom tooltip
142
function putDataInTooltip(item) {
143
var description = '';
144
var linkToLogo =
145
'https://cdn.anychart.com/images/quadrant-chart/';
146
147
$('.custom-tooltip h1').html(item.name + '<img class="img"/>');
148
$('.custom-tooltip .subtitle').html(item.description_short);
149
$('.custom-tooltip .img').attr('src', linkToLogo + item.logo);
150
151
if (item.founded) {
152
description += '<b>Founded: </b>' + item.founded + '<br/>';
153
}
154
if (item.headquarters) {
155
description +=
156
'<b>Headquarters: </b>' + item.headquarters + '<br/>';
157
}
158
if (item.description) {
159
description += '<br/>' + item.description;
160
}
161
162
$('.custom-tooltip .description').html(description);
163
}
164
}
165
);
166
});