Hi,
I'm trying to make my heatmap chart gradient range from white to red.
If I specify the red color code in the color range object for the chart it will range from black to red, which is not ideal for my use case.
To fix this I'd have to do the following
"colorRange": {
"gradient": "1",
"minValue": "0",
"code": "#ffffff",
"startLabel": "Poor",
"endLabel": "Good",
"color": [
{
"code": "#FF0000",
"maxValue": "666"
}]
}
This works as expected, however the problem is that I have to specify the max value, which means I need to find the highest value column in the heatmap chart and apply that value to the maxValue key, which makes this far less convenient than it could be.
It would be great if I could do something like this
"colorRange": {
"gradient": "1",
"minValue": "0"
"startCode": "#ffffff",
"code": "#FF0000",
"startLabel": "Poor",
"endLabel": "Good"
}
Which would result in the following
Thanks in advance