It seems that it is a bug, so I have created a GitHub issue for it. You can watch this issue in the link below and track any information and workarounds for this one: https://github.com/highcharts/highcharts/issues/22546
Hi, There is actually a better solution, where you don't need to set the pane angle at all - just set the pointPlacement: "on", also for the second series, and it works as expected: https://jsfiddle.net/BlackLabel/evw4jsbt/ Feel free to reach out if you have any further questions. Kind reg...
Hi @Nehakumari, Can you add your comments on GitHub? We work as a single team, and we want to keep the discussion about bugs and workarounds under relevant tickets on GH - it benefits everyone involved - you get better and faster support, devs get more context, and it helps to prioritize the tickets...
Hi, Operations on redraw event can be tricky. To dynamically update the groupPadding based on the number of visible series, you can use the render and legend.events.itemClick events. This approach ensures that the groupPadding is recalculated whenever the chart is rendered or when a legend item is c...
Hi, Thank you for sharing that. It seems the issue might be related to how Highcharts interprets the id property during updates. When the id is involved, Highcharts tries to match the existing points by id rather than treating them as entirely new data points. To work around this, you can temporaril...
Hi, Welcome to our forum and thanks for contacting us with your question! Yes, it's definitely possible to have different data grouping settings for different series types in Highcharts. You can specify the dataGrouping settings individually for each series in your chart configuration. Here's an exa...
Hi, Thanks for the update. Ad 1) Yes, your approach is correct. By including the exporting module, the default exporting options are automatically enabled, which is why you didn't need to modify the chart object with the exporting tag. This should work fine across different browsers and platforms, a...
Hi, Thanks for reaching out with your question. To trigger the showMoreDetails() function on a double-click event, you need to modify the onclick attribute in your HTML button to handle a double-click event. You can achieve this by using the ondblclick attribute instead. Updated demo: https://jsfidd...
Hi, Thanks for the suggestion, as my colleague Dawid mentioned, we are currently working on the layout customisation options in this direction, and want to return to JS-based config. It will have more benefits, as it would also allow to edit layout options asynchronously and enable full layout setti...
Great job finding a solution!
Using the redraw event to refresh the data table by toggling its visibility is a clever approach. It's nice to see you were able to get it working as you wanted.
If you have any more questions or need further assistance, feel free to reach out.
Happy charting!
Hi, Thanks for reaching out with your question. To fix this problem, you need to set the dataLables.verticalAlign to "top" - see the API reference: https://api.highcharts.com/highcharts/series.columnrange.dataLabels.verticalAlign Demo: https://jsfiddle.net/BlackLabel/q1w9knu0/ Feel free to...
Hi, Thanks for letting us know about the issue. 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 inv...
Hi, Welcome to our forum and thanks for contacting us with your question! If you are using Highcharts version lower than v12, this demo should guide you well, export module is imported properly and works as expected: https://stackblitz.com/edit/stackblitz-starters-cu7hnq?file=components%2FLineChart....
Hi, Welcome to our forum and thanks for contacting us with your question! Certainly! To improve the spacing between bars and accommodate long labels, you can adjust a few properties in your bar chart configuration. Here's a suggestion: 1. Use xAxis.labels.style and xAxis.labels.rotation: Adjust th...