We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
placeholder
1 parent 785bade commit 5c2393aCopy full SHA for 5c2393a
src/plots/plots.js
@@ -2012,11 +2012,8 @@ plots.doCalcdata = function(gd, traces) {
2012
//
2013
// This ensures there is a calcdata item for every trace,
2014
// even if cartesian logic doesn't handle it (for things like legends).
2015
- //
2016
- // Tag this artificial calc point with 'placeholder: true',
2017
- // to make it easier to skip over them in during the plot and hover step.
2018
if(!Array.isArray(cd) || !cd[0]) {
2019
- cd = [{x: false, y: false, placeholder: true}];
+ cd = [{x: false, y: false}];
2020
}
2021
2022
// add the trace-wide properties to the first point,
0 commit comments