Search found 4632 matches

Go to advanced search

by KacperMadej
Fri Sep 15, 2023 2:53 pm
Forum: Highcharts Usage
Topic: Heatmap rending is slow for Million Data Points
Replies: 1
Views: 260
 
Jump to post

Re: Heatmap rending is slow for Million Data Points

Hi Kishore, the same results as for a standard or boosted chart with >100k points could be achieved by processing the data and getting a smaller data sample and using heatmap with interpolation (https://www.highcharts.com/demo/highcharts/heatmap-interpolation) that would help with reducing the amoun...
by KacperMadej
Tue Jun 06, 2023 8:49 am
Forum: Highcharts Maps
Topic: tile map examples?
Replies: 3
Views: 1281
 
Jump to post

Re: tile map examples?

Tilemap is a series type available in Highcharts Maps. Here's a full documentation for it: https://www.highcharts.com/docs/maps/tilemap-series Experimental tilemap generator: https://www.highcharts.com/samples/highcharts/studies/tilemap-generator In case you are looking for a Tiled web map (backgrou...
by KacperMadej
Fri May 12, 2023 8:06 am
Forum: Highcharts Maps
Topic: Reducing size of inline SVG path for maps
Replies: 8
Views: 1609
 
Jump to post

Re: Reducing size of inline SVG path for maps

Looks like a different, but connected, problem - reported a bug here: https://github.com/highcharts/highcharts/issues/18972 This could be resolved by parsing the SVG path in JS code after it is loaded into the page so you could still have the option to load a smaller file for the map. The conversion...
by KacperMadej
Fri May 05, 2023 1:17 pm
Forum: Highcharts Maps
Topic: Reducing size of inline SVG path for maps
Replies: 8
Views: 1609
 
Jump to post

Re: Reducing size of inline SVG path for maps

Hi, The operators are working better now but the script that is processing the path is not handling the lack of spaces between path elements (mostly or only the lack of space before the minus sign when numbers are given as e.g. "19-69" instead of "19 -69"). If there are spaces ad...
by KacperMadej
Mon Feb 06, 2023 1:18 pm
Forum: Highcharts Maps
Topic: HighMaps Zoomed-in Location based on user selected location
Replies: 5
Views: 1893
 
Jump to post

Re: HighMaps Zoomed-in Location based on user selected location

Hi Ferdy, To zoom to a map point you could call zoomTo function on the point. Demo: https://jsfiddle.net/BlackLabel/6430wnrj/16/ If your point has id then you could use chart.get function to find that point. chart.get('NY').zoomTo(); zoomBy coords parameter is just a set of coordinates that should b...
by KacperMadej
Thu Dec 22, 2022 2:14 pm
Forum: Highcharts Maps
Topic: Reducing size of inline SVG path for maps
Replies: 8
Views: 1609
 
Jump to post

Re: Reducing size of inline SVG path for maps

There are some limitations for the path value, namely "For compatibily with old IE, not all SVG path definitions are supported, but M, L and C operators are safe." (source: https://api.highcharts.com/highmaps/series.map.data.path). There is currently a work being done towards removing any ...
by KacperMadej
Tue Dec 13, 2022 3:10 pm
Forum: Highcharts Maps
Topic: Reducing size of inline SVG path for maps
Replies: 8
Views: 1609
 
Jump to post

Re: Reducing size of inline SVG path for maps

Hello, Why the resulting path is not supported? Please provide more details and a file/code example. In general, the size of the same map in SVG is larger than in GeoJSON and TopoJSON is the smallest. By size: SVG > GeoJSON > TopoJSON If the map that you have is having a lot of small parts you could...
by KacperMadej
Fri Dec 09, 2022 9:10 am
Forum: Highcharts Usage
Topic: legend navigation position
Replies: 4
Views: 1424
 
Jump to post

Re: legend navigation position

Update to the experimental demo (still experimental but updated to work with the current code + new symbols): http://jsfiddle.net/BlackLabel/2zo9hg4f/2/
by KacperMadej
Thu Sep 15, 2022 11:14 am
Forum: Highcharts Maps
Topic: Can't get drilldown map to work with custom GeoJSON file
Replies: 8
Views: 1566
 
Jump to post

Re: Can't get drilldown map to work with custom GeoJSON file

Thank you for sharing the final result. P.S. You got it to work so below is a short answer purely to leave no unanswered questions: Formatting of the map files for dilldown includes name property for each data point (so the breadcrumbs show correct text) and something useful on drilldown property (f...
by KacperMadej
Tue Sep 13, 2022 4:36 pm
Forum: Highcharts Maps
Topic: Can't get drilldown map to work with custom GeoJSON file
Replies: 8
Views: 1566
 
Jump to post

Re: Can't get drilldown map to work with custom GeoJSON file

Hi, Is Highmaps limited to the Map collection files? No, it is not. Let's start with how the working map works - it boils down to some key pieces. The map of the USA has each state with some properties. One of the properties is 'hc-key'. Using the 'hc-key' property we can find a map of that state in...
by KacperMadej
Tue Apr 12, 2022 8:28 am
Forum: Highcharts Maps
Topic: Cluster Expansion when there are multiple points at the same lat/long
Replies: 18
Views: 3095
 
Jump to post

Re: Cluster Expansion when there are multiple points at the same lat/long

Hi mchaggis If you have multiple points with the same location you could limit the maximum zoom using maxZoom to avoid zooming too much. I have managed to write a work round where the tooltip formatter function detects is a cluster contains only points with the same lat/long and prevents the user fr...
by KacperMadej
Mon Mar 21, 2022 2:34 pm
Forum: Highcharts Maps
Topic: Pacific Centered World Map (Bubble Map)
Replies: 8
Views: 2545
 
Jump to post

Re: Pacific Centered World Map (Bubble Map)

Based on a rotation 's lambda option any part of the world could be used as a center. With lambda of 210 it looks like here: https://jsfiddle.net/BlackLabel/p5or2gfe/ Code reference: mapView: { projection: { name: 'Miller', rotation: [210] } }, You could also see this in action with GUI for rotation...
by KacperMadej
Mon Mar 21, 2022 2:32 pm
Forum: Highcharts Maps
Topic: Pacific centered World Map
Replies: 2
Views: 1763
 
Jump to post

Re: Pacific centered World Map

Based on a rotation 's lambda option any part of the world could be used as a center. With lambda of 210 it looks like here: https://jsfiddle.net/BlackLabel/p5or2gfe/ Code reference: mapView: { projection: { name: 'Miller', rotation: [210] } }, You could also see this in action with GUI for rotation...
by KacperMadej
Tue Dec 07, 2021 2:46 pm
Forum: Highcharts Usage
Topic: Is Export Server Down?
Replies: 6
Views: 1516
 
Jump to post

Re: Is Export Server Down?

Hi Billysonic,

In short: the async option is no longer supported.
Here's the full info: https://www.highcharts.com/docs/export- ... ync-option

Please let us know if you have any more questions or comments about the current topic.
Best regards,
by KacperMadej
Tue Dec 07, 2021 2:41 pm
Forum: Highcharts Maps
Topic: Mappie not showing up
Replies: 7
Views: 2291
 
Jump to post

Re: Mappie not showing up

Hi,

No problem. Happy to hear it worked for you.
In case of any further questions about Highcharts please let us know.

Best regards,

Go to advanced search