Hi i am using <ejs-heatmap> in angular and i am facing issue with paletteSettings,
if i provide endValue in palette then it will change color as expected
i.e -
public paletteSettings: Object = {
palette: [
{
startValue: 0,
endValue: 100,
minColor: "#36BCC6",
maxColor: "#208FC6"
}
]
};
But i dont want to pass endValue. so in this case it shows default color on chart
i.e - i am using like this,
public paletteSettings: Object = {
palette: [
{
startValue: 0,
minColor: "#FFFFFF",
maxColor: "
#FF0000
"
}
]
};
I want to apply my own color. but also don't want to apply endValue.