I’m trying to change de color gradiant in my choropleth map. Well, surely the awnser is out there but I really coudn’t find it anywhere. There’s a print of my map here
I would like for the color gradiant to start at 100, for example.
Also, would there be a way to make the scale between the current min and max values ploted?
Thanks.
I was able to solve my issue using color_continuous_scale=[(0, “yellow”), (0.5, “orange”), (1, “red”)] after going through again and again in the documentation. But thanks anyway!