Hi, Welcome to the forum and thanks for reaching out with your question. You are close :) here is refined version of your remove function: remove() { if (this.chartRef) { const series = this.chartRef.series[0]; const newData = series.data .filter(point => point.options.id !== 'RED') .map(point => ({...
Hi, Again, with a spline series, there is no way to combine it like you want with a column series easily; you could try to link it to a separate xAxis and work out the logic to get your display - it's beyond the scope of the forum support. If you need help with your implementation, you can try to lo...
Hi, Thanks for reaching out with your question. You can fix the display with the binWidth option, eg. setting it to 20 should help: https://api.highcharts.com/highcharts/plotOptions.histogram.binWidth Adding the last tick can be enforced with xAxis.endOnTick option: https://api.highcharts.com/highch...
Hi, Welcome to the forum and thank you for reaching out. It seems that to a certain extent, you might be better off with an areaspline chart, please take a look at this demo: https://www.highcharts.com/demo/highcharts/fan-chart Otherwise, this functionality is beyond the scope of support on our foru...
Hi, I've checked your demo. By default, the chart would have a height of 400px. For many versions, I've checked up to v6. But, if you add a wrapper div, and, with CSS, set the height of this wrapper to a certain height, even in the newest version, your chart will have 100% of the height of the wrapp...
When you add a second series, the chart's layout might adjust automatically. To fix this, you can set the startAngle in the pane configuration to control the rotation of the chart - in this case, you would need a negative value.
Hi, I double-checked the demo, and there is an issue after the width update, but only with the options 'responsive' or 'always', with 'never' there is no issue, as there is no dropdown - 'zoom' is a label, not a button. Still, I've reported the issue with other options here, it is a very recent regr...
Hi, Thanks for the input! This does look like a potential bug, and I’d recommend reporting it on the official Highcharts GitHub repository: https://github.com/highcharts/highcharts/issues. That’s the best place to raise issues like this, as it allows the development team to investigate and determine...