Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3f99890

Browse files
committed
ignore errorbars with scatterternary
1 parent f3e3f1e commit 3f99890

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/errorbars/plot.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ module.exports = function plot(traces, plotinfo) {
2222

2323
traces.each(function(d) {
2424
var trace = d[0].trace,
25-
xObj = trace.error_x,
26-
yObj = trace.error_y;
25+
xObj = trace.error_x || {},
26+
yObj = trace.error_y || {};
2727

2828
var sparse = (
2929
subTypes.hasMarkers(trace) &&

0 commit comments

Comments
 (0)