-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcustom-tooltips.js
117 lines (91 loc) · 3.28 KB
/
custom-tooltips.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
/**
* --------------------------------------------------------------------------
* Custom Tooltips for Chart.js (v4.1.0): custom-tooltips.js
* Licensed under MIT (https://github.com/coreui/coreui-chartjs/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
const ClassName = {
TOOLTIP: 'chartjs-tooltip',
TOOLTIP_BODY: 'chartjs-tooltip-body',
TOOLTIP_BODY_ITEM: 'chartjs-tooltip-body-item',
TOOLTIP_HEADER: 'chartjs-tooltip-header',
TOOLTIP_HEADER_ITEM: 'chartjs-tooltip-header-item'
}
const getOrCreateTooltip = chart => {
let tooltipEl = chart.canvas.parentNode.querySelector('div')
if (!tooltipEl) {
tooltipEl = document.createElement('div')
tooltipEl.classList.add(ClassName.TOOLTIP)
const table = document.createElement('table')
table.style.margin = '0px'
tooltipEl.append(table)
chart.canvas.parentNode.append(tooltipEl)
}
return tooltipEl
}
const customTooltips = context => {
// Tooltip Element
const { chart, tooltip } = context
const tooltipEl = getOrCreateTooltip(chart)
// Hide if no tooltip
if (tooltip.opacity === 0) {
tooltipEl.style.opacity = 0
return
}
// Set Text
if (tooltip.body) {
const titleLines = tooltip.title || []
const bodyLines = tooltip.body.map(b => b.lines)
const tableHead = document.createElement('thead')
tableHead.classList.add(ClassName.TOOLTIP_HEADER)
for (const title of titleLines) {
const tr = document.createElement('tr')
tr.style.borderWidth = 0
tr.classList.add(ClassName.TOOLTIP_HEADER_ITEM)
const th = document.createElement('th')
th.style.borderWidth = 0
const text = document.createTextNode(title)
th.append(text)
tr.append(th)
tableHead.append(tr)
}
const tableBody = document.createElement('tbody')
tableBody.classList.add(ClassName.TOOLTIP_BODY)
for (const [i, body] of bodyLines.entries()) {
const colors = tooltip.labelColors[i]
const span = document.createElement('span')
span.style.background = colors.backgroundColor
span.style.borderColor = colors.borderColor
span.style.borderWidth = '2px'
span.style.marginRight = '10px'
span.style.height = '10px'
span.style.width = '10px'
span.style.display = 'inline-block'
const tr = document.createElement('tr')
tr.classList.add(ClassName.TOOLTIP_BODY_ITEM)
const td = document.createElement('td')
td.style.borderWidth = 0
const text = document.createTextNode(body)
td.append(span)
td.append(text)
tr.append(td)
tableBody.append(tr)
}
const tableRoot = tooltipEl.querySelector('table')
// Remove old children
while (tableRoot.firstChild) {
tableRoot.firstChild.remove()
}
// Add new children
tableRoot.append(tableHead)
tableRoot.append(tableBody)
}
const { offsetLeft: positionX, offsetTop: positionY } = chart.canvas
// Display, position, and set styles for font
tooltipEl.style.opacity = 1
tooltipEl.style.left = `${positionX + tooltip.caretX}px`
tooltipEl.style.top = `${positionY + tooltip.caretY}px`
tooltipEl.style.font = tooltip.options.bodyFont.string
tooltipEl.style.padding = `${tooltip.padding}px ${tooltip.padding}px`
}
export default customTooltips