diff --git a/src/args.jl b/src/args.jl index 3b109443..ac5bcb0f 100644 --- a/src/args.jl +++ b/src/args.jl @@ -138,6 +138,8 @@ _seriesDefaults[:nbins] = 30 # number of bins for heatma _seriesDefaults[:smooth] = false # regression line? _seriesDefaults[:group] = nothing # groupby vector _seriesDefaults[:annotation] = nothing # annotation tuple(s)... (x,y,annotation) +_seriesDefaults[:x] = nothing +_seriesDefaults[:y] = nothing _seriesDefaults[:z] = nothing # depth for contour, surface, etc _seriesDefaults[:zcolor] = nothing # value for color scale _seriesDefaults[:surface] = nothing diff --git a/src/backends/plotly.jl b/src/backends/plotly.jl index 1e4070bb..21bc6cd8 100644 --- a/src/backends/plotly.jl +++ b/src/backends/plotly.jl @@ -96,7 +96,6 @@ function Base.display(::PlotsDisplay, plt::Plot{PlotlyPackage}) -
-