light-and-salt

Results 9 comments of light-and-salt

Or we can make the rule a bit more specific like ``` hard(no_stack_with_bar_area_discrete_color,E) :- mark(bar;area), channel(E,color), discrete(E), field(E,F), field(EX,FX), field(EY, FY), F != FX, F != FY, not stack(_). ```...

`F != FX, F != FY,` is my ugly way of saying that the color field is not the same as the x field and it's also not the same...

Right, so it should be ``` hard(no_stack_with_bar_area_discrete_color,E) :- mark(bar;area), channel(E,color), discrete(E), not redundant_color(E), not stack(_). redundant_color(E) :- channel(E,color), field(E,F), channel(EX, x), field(EX,FX), F = FX. redundant_color(E) :- channel(E,color), field(E,F), channel(EY,...

Just noticed [this vega example](https://vega.github.io/editor/#/examples/vega/distortion-comparison) picks color like below. ![vega pick color example](https://user-images.githubusercontent.com/822034/36884749-9ccc06f6-1d97-11e8-96e7-3f23a4546dd8.gif) Not saying this is the way to go for Voyager, but I want to mark this example.

My problem is solved on StackOverflow: http://stackoverflow.com/q/34820111/1270459

> Hi, I have this problem currently (though I am using different contexts on the same route), don't suppose you managed to find a solution? No... I didn't find a...

For my consistency project, I sometimes want to highlight a cluster of marks. For example, in the mockup below, my "console" prints a warning that says the blue in the...

Can hack contour to highlight a single data point (or a subset of points) as well: ![screen shot 2018-03-05 at 8 19 55 pm](https://user-images.githubusercontent.com/822034/37014027-a921280a-20b2-11e8-80b3-561337be648c.png) ``` { "$schema": "https://vega.github.io/schema/vega/v3.json", "width": 500,...