Skip to content

Commit 3a04408

Browse files
committed
When multiple series are defined in the sql, and then the user deselects one of the series, and then hovers over the others, the tooltip that should show the series values does not appear.
fix #868
1 parent 1e5fc5d commit 3a04408

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# CHANGELOG.md
22

3+
## v0.35
4+
- Fix tooltips not showing on line charts with one or more hidden series
5+
36
## v0.34 (2025-03-23)
47

58
### ✨ Top Features at a Glance

sqlpage/apexcharts.js

+1
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,7 @@ sqlpage_chart = (() => {
215215
: undefined,
216216
y: {
217217
formatter: (value) => {
218+
if (value == null) return "";
218219
if (is_timeseries && data.type === "rangeBar") {
219220
const d = new Date(value);
220221
if (d.getHours() === 0 && d.getMinutes() === 0)

0 commit comments

Comments
 (0)