Search found 587 matches

Go to advanced search

by andrzej.b
Mon Feb 10, 2025 4:21 pm
Forum: Highcharts Stock
Topic: Column chart navigator issue
Replies: 3
Views: 324
 
Jump to post

Re: Column chart navigator issue

Hi there, It looks like you're experiencing an issue where the columns in the navigator don't align with those in the main chart. This can sometimes happen due to differences in data processing between the main chart and the navigator. Here are a few things you can try: 1. ​Ensure Data Consistency​:...
by andrzej.b
Mon Feb 10, 2025 4:08 pm
Forum: Highcharts Usage
Topic: Highcharts: Export SVG to Canvas
Replies: 3
Views: 217
 
Jump to post

Re: Highcharts: Export SVG to Canvas

Hi Raja, Please see the example with such a conversion: https://jsfiddle.net/BlackLabel/dutzb1sc/ I hope you will be able to use it to move forward with your use case. Keep in mind that rendering one million points on a canvas might still be resource-intensive, so you may need to consider additional...
by andrzej.b
Mon Feb 10, 2025 2:53 pm
Forum: Highcharts Usage
Topic: Highcharts: Export SVG to Canvas
Replies: 3
Views: 217
 
Jump to post

Re: Highcharts: Export SVG to Canvas

Hi Raja, Have you considered taking advantage of the boost module first: https://www.highcharts.com/docs/advanced-chart-features/boost-module? The Boost module is a great option for handling large datasets efficiently in Highcharts. It uses WebGL to render charts, which significantly improves perfor...
by andrzej.b
Mon Feb 10, 2025 12:52 pm
Forum: Highcharts Stock
Topic: Zoom with scroll wheel but disable marquee / drag selection ?
Replies: 6
Views: 347
 
Jump to post

Re: Zoom with scroll wheel but disable marquee / drag selection ?

Hi, To completely disable the drag selection box from appearing, you can set the chart.zooming.type to null. This will prevent the zoom selection box from being drawn. Here's how you can do it: Highcharts.chart('container', { chart: { zooming: { type: null, // Disable the drag selection box mouseWhe...
by andrzej.b
Mon Feb 10, 2025 12:31 pm
Forum: Highcharts Usage
Topic: Flag series help
Replies: 16
Views: 2610
 
Jump to post

Re: Flag series help

Hi there,

There is nothing else than the approach I shared with you in my last reply.

Kind regards,
by andrzej.b
Mon Feb 10, 2025 11:39 am
Forum: Highcharts Usage
Topic: Bart chart with multiple series issue
Replies: 2
Views: 59
 
Jump to post

Re: Bart chart with multiple series issue

Hi there, It looks like you're on the right track, but there are a few areas in your code that need adjustments. The error you're encountering might be related to how you're updating the chart's series. Here's a revised version of your function: function renderOpenClaimsPaidReserveByTeam(filterStatu...
by andrzej.b
Mon Feb 10, 2025 11:26 am
Forum: Highcharts Usage
Topic: Custom Packages instructions not working?
Replies: 1
Views: 117
 
Jump to post

Re: Custom Packages instructions not working?

Hey Josh, It looks like you're running into a couple of issues with the setup. Let's tackle them one by one. 1. ​Syntax Error with import and export:​ This error usually happens when the file isn't being treated as an ES module. Make sure your environment is set up to handle ES modules. You might ne...
by andrzej.b
Mon Feb 10, 2025 11:09 am
Forum: Highcharts Usage
Topic: Highcharts column with error bars not aligned
Replies: 3
Views: 527
 
Jump to post

Re: Highcharts column with error bars not aligned

Hi, I investigated the issue further, and it is a regression bug, reported here: https://github.com/highcharts/highcharts/issues/22633 You can watch this issue in the link above and track any information and workarounds for this one. As a temporary workaround, before the official one appears under t...
by andrzej.b
Mon Feb 10, 2025 10:44 am
Forum: Highcharts Stock
Topic: Zoom with scroll wheel but disable marquee / drag selection ?
Replies: 6
Views: 347
 
Jump to post

Re: Zoom with scroll wheel but disable marquee / drag selection ?

Hi, Great to hear that the issue is resolved. As for your suggestion, if you think such a feature would be useful for more users, you can request it here: https://github.com/highcharts/highcharts/issues/new/choose You can expect possible updates or workarounds there. If anything else pops up, please...
by andrzej.b
Mon Feb 10, 2025 10:12 am
Forum: Highcharts Maps
Topic: How to disable mappoint hover halo and still clickable
Replies: 1
Views: 299
 
Jump to post

Re: How to disable mappoint hover halo and still clickable

Hi, Welcome to our forum and thanks for contacting us with your question! To disable the halo effect on a mappoint while keeping it clickable, you can set the halo size to 0. Here's how you can do it: states: { hover: { halo: { size: 0 } } } This configuration will keep the mappoints clickable while...
by andrzej.b
Mon Feb 10, 2025 8:23 am
Forum: Highcharts Gantt
Topic: Draggable not working after some time for Gantt chart
Replies: 1
Views: 327
 
Jump to post

Re: Draggable not working after some time for Gantt chart

Hi there, 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 whether it’s a ...
by andrzej.b
Fri Feb 07, 2025 7:54 pm
Forum: Highcharts Stock
Topic: accessibility bug on auto-generated headingTagName?
Replies: 2
Views: 1142
 
Jump to post

Re: accessibility bug on auto-generated headingTagName?

Hi there, Thanks for letting us know about this issue. It is reported here: https://github.com/highcharts/highcharts/issues/22513. If you have any additional insights or details, feel free to add them to the GitHub issue. This can be really helpful for the team to understand the context and prioriti...
by andrzej.b
Fri Feb 07, 2025 2:49 pm
Forum: Highcharts Stock
Topic: Zoom with scroll wheel but disable marquee / drag selection ?
Replies: 6
Views: 347
 
Jump to post

Re: Zoom with scroll wheel but disable marquee / drag selection ?

Hi, Welcome to our forum and thanks for contacting us with your question! Yes, you can enable zooming with the scroll wheel and disable zooming via mouse drag selection. Here's how you can achieve that: 1. Set zoomType to null to disable the drag-select zoom. 2. Enable the scroll wheel zoom by setti...
by andrzej.b
Fri Feb 07, 2025 2:43 pm
Forum: Highcharts Dashboards
Topic: Problem with translation of "Row" component on sidebar in edit mode
Replies: 1
Views: 892
 
Jump to post

Re: Problem with translation of "Row" component on sidebar in edit mode

Hi, Thanks for letting us know about this issue. I've reported it here: https://github.com/highcharts/highcharts/issues/22624 You can follow it up there for updates, workarounds, etc, I encourage you to actively raise your voice via comments and thumbs up over there. I've also raised your second poi...
by andrzej.b
Fri Feb 07, 2025 11:38 am
Forum: Highcharts Usage
Topic: Sunburst Chart: What Format for External .CSV Data (2D Layout
Replies: 1
Views: 190
 
Jump to post

Re: Sunburst Chart: What Format for External .CSV Data (2D Layout

Hi there, Creating a Sunburst chart with a CSV file requires structuring your data in a hierarchical format that Highcharts can interpret. Since your goal is to visualize data with multiple layers (country, disease categories, and subcategories), let's first clarify how to structure your CSV data an...

Go to advanced search