Skip to content

Commit

Permalink
Fix bug in pw interactive plot
Browse files Browse the repository at this point in the history
  • Loading branch information
gibsramen committed Mar 31, 2022
1 parent 5a9b5c5 commit f0b2163
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@
("50%", "@q2{0.000}"),
("75%", "@q3{0.000}")
]
hover_boxes.formatters = {"@q1": "numeral"}

p = figure(
tools=["pan", "reset", "box_zoom", hover_boxes, hover_points],
Expand Down Expand Up @@ -188,7 +187,7 @@
'qmin': [],
};
var i = 0;
var i = 1;
for (let [key, values] of Object.entries(compCompObj)) {
newBoxSource['comparison'].push(key);
let qmax = Math.max(...values);
Expand Down

0 comments on commit f0b2163

Please sign in to comment.