Paweł Fus

Results 106 comments of Paweł Fus

It's not related to the `overscroll` option. It's a general issue with redrawing a chart when yAxis labels show up and hide. When yAxes are hidden, it works fine: https://jsfiddle.net/BlackLabel/cotk3zu7/...

@bre1470 could you review too? I see a few `as any` castings, but I don't have any great ideas on how to solve them

> Last missing piece, and I am not sure how to deal with this. With a collapsed option, we would need some way to convey to the user that they...

> I think that sounds a bit complicated - I mean the end user would have to look at the legend, compare colors etc. And the implementer must set up...

Thanks for sharing the idea! **PoC:** Demo: https://jsfiddle.net/BlackLabel/qaewgc6o/ (open console and click on yAxis labels). Plugin: ```js (function(H) { H.wrap( H._modules["Core/Axis/TreeGridAxis.js"].Additions.prototype, 'collapse', function(proceed, node) { H.fireEvent(this.axis, 'collapse', { axis: this.axis,...

Thanks! Let's keep this open, so if this get some votes, it will be implemented directly in the core :)

Hi @evandro-mota > How do I do this in the angular version? 1. Copy and save the "Plugin" part in a file 2. Import plugin as any other Highcharts plugin,...

Not related to Highcharts Stock only: https://jsfiddle.net/BlackLabel/4xdsr8ov/ Isn't that a problem that happens in jsFiddle? Events from the left iframe are not available in the results frame. It doesn't have...

Sure thing! @govinda18 could you try this plugin? Load this plugin after loading Highcharts and other plugins. Demo: https://jsfiddle.net/BlackLabel/wcLzhq71/ Plugin: ```js (function(H) { H.wrap( H.Pointer.prototype, 'onContainerMouseDown', function(proceed, e) { const...

It's a problem with the library. Related tickets: - https://github.com/highcharts/highcharts/issues/16681 - It's necessary to set `textPath.attributes.dy` option to align them. That shouldn't be necessary, setting simple `distance` should be enough....