Paweł Fus
Paweł Fus
Ok, thanks for the explanation!
*Internal note:* Indicators are bound to `updatedData` event. It seems that `indicator` series does not fire `updatedData` event when data is recalculated.
**Workaround:** Demo: https://jsfiddle.net/BlackLabel/t7qd5v8j/ Plugin: ```js (function(H) { H.wrap( H.seriesTypes.sma.prototype, 'recalculateValues', function(proceed) { const ret = proceed.apply(this, Array.prototype.slice.call(arguments, 1)); this.isDirtyData = true; return ret; } ) })(Highcharts); ``` *Internal note:* Check...
It looks like fillOpacity and lineWidth are not applied for legend item at all. However, using `rgba()` as color, works fine, demo: http://jsfiddle.net/kNLL4/5/ (still no stroke, stroke can be set...
Thanks for the heads-up @jeffersonswartz ! *Internal note:* Tried to bisect, but it's a bit tricky: - last working commit: f6cc2cc79 - after merge organization chart branch, regressions prevent us...
The easiest solution is to disable link labels: https://jsfiddle.net/BlackLabel/wtpn6z0r/ Snippet: ```js dataLabels: { enabled: true, format: '', nodeFormat: '{point.name}' } ``` **Edit:** We can force link-labels to follow path: https://jsfiddle.net/BlackLabel/v83bd4fr/...
Hi @ArulValan - yes, just as you said, you can use `dataLabels.formatter` to modify what is rendered as a link label: https://jsfiddle.net/BlackLabel/s57281wc/ (line ~65). If you have more questions, please...
Alternative workaround: Demo: https://jsfiddle.net/BlackLabel/9b1p5vkn/160/ Plugin: ```js (function(H) { H.wrap( H.Chart.prototype, 'setChartSize', function(p, ...args) { const ret = p.apply(this, args); this.plotSizeX = Math.max(this.plotSizeX, 1); return ret } ) })(Highcharts); ```
Hi @patrickjuchli Thanks for your suggestion. Just a note: `Intl.DateTimeFormat` can be used easily in `formatter`s, for example: http://jsfiddle.net/BlackLabel/bke50v2x/2/ @TorsteinHonsi FYI
It's a regression, bisect is needed. Working fine with v8.0.4: https://jsfiddle.net/BlackLabel/yoLhv71s/1/ Broken since v8.1.0: https://jsfiddle.net/BlackLabel/yoLhv71s/2/