Igor Alshannikov
Igor Alshannikov
Hi, currently this data is not programmatically accessible unfortunately.
This feature is not planned for the very next release, but we are considering it for future versions. Currently, we don't have a 'selection' state per se, but would a...
The same in: > Lets-Plot Kotlin API v.4.11.2. Frontend: Notebook with dynamically loaded JS. Lets-Plot JS v.4.7.3.
In [v4.8.0](https://github.com/JetBrains/lets-plot/releases/tag/v4.8.0) the default behavior now is "See tooltips of ALL data series when hovering over one of them."
Related: #995
Hi @tgbrooks ! The ultraplot-style sizing approach would be useful, but it's very difficult to implement because it's literally the opposite of how we currently handle plot sizing (we go...
The workaround (and IMO a proper way to build this bar plot) is to use `count` and `weight` aes: ``` d2 = { 'name': ['foo', 'foo', 'bar', 'bar'], 'value': [80,...
> Variable not found: '..count..' Impossible:) stat `count` (default) computes var `..count..`
1) > However, the following code should stack bars (currently it doesn't): > >d3 = { > 'name': ['foo', 'foo', 'bar', 'bar'], > 'value': [80, 90, 15, 35] >} >...