Search found 518 matches

Go to advanced search

by andrzej.b
Mon Jan 20, 2025 3:45 pm
Forum: Highcharts Dashboards
Topic: Can't move cell in firefox
Replies: 1
Views: 53
 
Jump to post

Re: Can't move cell in firefox

Hi,


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

Kind regards,
by andrzej.b
Mon Jan 20, 2025 3:21 pm
Forum: Highcharts Usage
Topic: Polar chart rotating when adding a second series
Replies: 3
Views: 75
 
Jump to post

Re: Polar chart rotating when adding a second series

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...
by andrzej.b
Mon Jan 20, 2025 2:37 pm
Forum: Highcharts Maps
Topic: Map tiles not reloading after setView
Replies: 9
Views: 3158
 
Jump to post

Re: Map tiles not reloading after setView

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...
by andrzej.b
Mon Jan 20, 2025 2:30 pm
Forum: Highcharts Usage
Topic: Request to Remove Bar Space with null Value and Adjust Other Bars Width
Replies: 7
Views: 292
 
Jump to post

Re: Request to Remove Bar Space with null Value and Adjust Other Bars Width

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...
by andrzej.b
Mon Jan 20, 2025 12:17 pm
Forum: Highcharts Usage
Topic: Update series.data in bar-chart
Replies: 5
Views: 103
 
Jump to post

Re: Update series.data in bar-chart

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...
by andrzej.b
Mon Jan 20, 2025 12:05 pm
Forum: Highcharts Usage
Topic: dataGrouping different data units for different series types
Replies: 1
Views: 12
 
Jump to post

Re: dataGrouping different data units for different series types

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...
by andrzej.b
Mon Jan 20, 2025 11:57 am
Forum: Highcharts Stock
Topic: CSV files
Replies: 5
Views: 428
 
Jump to post

Re: CSV files

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...
by andrzej.b
Mon Jan 20, 2025 11:51 am
Forum: Highcharts Usage
Topic: Double click on popup
Replies: 1
Views: 13
 
Jump to post

Re: Double click on popup

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...
by andrzej.b
Mon Jan 20, 2025 11:45 am
Forum: Highcharts Dashboards
Topic: Customize layout - row and column span or width
Replies: 3
Views: 104
 
Jump to post

Re: Customize layout - row and column span or width

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...
by andrzej.b
Mon Jan 20, 2025 10:43 am
Forum: Highcharts Usage
Topic: Update datatable when drildown
Replies: 3
Views: 55
 
Jump to post

Re: Update datatable when drildown

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!
by andrzej.b
Fri Jan 17, 2025 4:49 pm
Forum: Highcharts Usage
Topic: Keep Column Group Custom Labels Outside
Replies: 1
Views: 68
 
Jump to post

Re: Keep Column Group Custom Labels Outside

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...
by andrzej.b
Fri Jan 17, 2025 4:45 pm
Forum: Highcharts Usage
Topic: Polar charts, two xAxis, with ones labels rotated
Replies: 1
Views: 56
 
Jump to post

Re: Polar charts, two xAxis, with ones labels rotated

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...
by andrzej.b
Fri Jan 17, 2025 4:12 pm
Forum: Highcharts Usage
Topic: Export chart as PNG in NextJS
Replies: 1
Views: 53
 
Jump to post

Re: Export chart as PNG in NextJS

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....
by andrzej.b
Fri Jan 17, 2025 1:46 pm
Forum: Highcharts Maps
Topic: Discrete quantized legend for maps
Replies: 7
Views: 369
 
Jump to post

Re: Discrete quantized legend for maps

You're welcome! In case of any further questions, feel free to contact us again.
by andrzej.b
Fri Jan 17, 2025 11:46 am
Forum: Highcharts Usage
Topic: Dynamic/Varied spacing between bars & Labels, for long labels
Replies: 1
Views: 56
 
Jump to post

Re: Dynamic/Varied spacing between bars & Labels, for long labels

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...

Go to advanced search