kmatarese

Results 8 comments of kmatarese

Same problem here. Running on a mac, versions for reference: Docker: ``` Server: Docker Engine - Community Engine: Version: 19.03.13 API version: 1.40 (minimum version 1.12) Go version: go1.13.15 Git...

Thanks @netil. I started using the legend template and was able to make the separate legend div scrollable that way by setting a `max-height` and `overflow-y: scroll`. It does seem...

> Providing some "scrollable" can solve the issue? Well... for some yes, but for other not. Because everyone's need are different and is almost impossible provide a "default" solution for...

It looks like `c3` had this ability through a poorly documented `alt-click` option ([commit here](https://gitlab.eterfund.ru/charts/c3-closed/commit/6a4d0179d143c7a9e8ace6c3ba7365c7952ddaf6)). It seems your library has inherited that, because I can use `alt-click` to select/focus a...

Seeing as `alt+click` wasn't really documented in C3 (I found it in a random github issue comment), if your plan is to implement double-click behavior I think it makes sense...

> > * Ability to disable the hover behavior. I found overriding `onover` and `onout` to be empty functions prevented hover but broke other legend click logic. A simple flag...

To work around this I've started using a custom legend template, have a fixed width per legend item, and use CSS to set `overflow: hidden` on each item. This leads...

Check out the fiddle from [this](https://stackoverflow.com/a/31539094/10682164) SO answer. If you modify the `.c3-tooltip-container` class to have `overflow: scroll` and set a `max-height` to your liking you should be able to...