Jonathan Diaz Report post Posted May 12, 2021 I would like to make a heat map that calculates the color ranges for each row separately As shown in the image, that row number 1 has its own color range and row number 2 also has its own color range. Ya que el rango de colores que me muestra es general toma en cuenta las dos filas. Share this post Link to post Share on other sites
Akash Biswas Report post Posted May 13, 2021 Hi, The Heatmap cells color is determined by the "colorRange" object that you define in your dataSource. Check this sample fiddle for reference : http://jsfiddle.net/qLtnwr3b/3/ Or you can explicitly set the color of the cells by defining the "color" configuration attribute within the individual "data" objects as below : { "rowid": "Samsung Galaxy S5", "columnid": "Processor", "value": "8.7", "tllabel": "Quad Core 2.5 GHz", "trlabel": "OS : Android 4.4 Kitkat", "color": "#FF0000" } Documentation link for reference : https://www.fusioncharts.com/dev/chart-guide/standard-charts/heat-map-chart#create-category-based-heat-map-charts Thanks, Akash. Share this post Link to post Share on other sites