Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

QuickMap - Heatmap

Hi guys,

Any idea on how to get an intelligent heatmap created to the QuickMap extension? The colors cant be harcoded based on value due to user selection.

I cant seem to get colormix1, nor colormix2 working for this,even though the expression work well within another table.

Im not sure can Quickmap read the argb()  which the colormix1() value seems to convert the color codes to? If you look in the code:

colorFormatter = function(c) {//function used to properly format the color that is entered

  var cc = c.toLowerCase();

  if ((cc.indexOf("rgb") === -1) && (cc.indexOf("#") === -1)) {

  if (cc.length < 6) {

  var addIt = "#";

  for (var i = cc.length; i < 6; i++) {

  addIt += "0";

  }

  cc = addIt + cc

  } else {

  cc = "#" + cc;

  }

  return cc;

  } else {

  return cc;

  }

}

Please post good solutions if you implemented some.

Thanks

1 Reply
Not applicable
Author

So it should be gradient minvalues -medianvalues -maxvalues.