vega-lite: synchron selection in multiple chart

Viewed 67

Is is possible to make a selection in one chart and the same selection gets added onto the other charts aromatically?

Maybe its possible as same as you brush?

scale: {
  "domain": {
    "selection": "brush"
  }
}

like you do it with the brush.

"selection": {
"brush": {
    "type": "interval",
    "encodings": ["x"]
}

},

In this example you can see what i want to do with vega lite. Is this possible?

0 Answers
Related