Skip to content

Commit

Permalink
Fix #128
Browse files Browse the repository at this point in the history
  • Loading branch information
randyzwitch committed Apr 22, 2016
1 parent 55f4436 commit 703a854
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/intermediates/modifiers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@ function hover!(v::VegaVisualization; opacity::Number = 1, color::AbstractString
)
v.marks[1].marks[1].properties.update = VegaMarkPropertySet(fillOpacity = VegaValueRef(value = 1),
strokeOpacity = VegaValueRef(value = 1),
fill = v.name == "lineplot"? nothing: VegaValueRef(scale = "group", field = field)
fill = v.name == "lineplot"? nothing: VegaValueRef(scale = "group", field = field),
stroke = v.name == "lineplot"? VegaValueRef(scale = "group", field = field) : nothing
)


Expand Down

0 comments on commit 703a854

Please sign in to comment.