Reputation: 8166
I need to create heat chart like this (Image Below).
I searched most of the blogs and google for this.
I've searched following libraries with no help to find.
https://valor-software.com/ng2-charts/
https://www.highcharts.com/demo/heatmap-canvas
But these are diffrent heat charts than I needed.
Upvotes: 3
Views: 1921
Reputation: 5826
In Highcharts the data is assigned for a particular area. On your map the data is independent from formal map areas (there's no single value for every the state/county). So creating that kind of map would be quite difficult (in my opinion).
Example of how it works in Highcharts:
Official demo of a map with colorAxis
(http://api.highcharts.com/highmaps/colorAxis) that can be used for visualizing the temperature: http://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/maps/demo/geojson/
Upvotes: 1