/** custom interpolate colors, [stopValue(0 - 1), color] or [color], if the latter, means equal distribution
* @example
* [[0, 'red'], [0.6, 'green'], [1, 'blue']]
*/
colors?: [number, string][] | string[];
/**
* The value domain to scale the color.
*/
domain?: [number, number];
/**
* Range of values that will be rendered, values outside of the range will be transparent.
*/
displayRange?: [number, number];
可以自行转换一下,-60对应0,40对应1,编写你的自定义色带colors domain参数默认为波段的[min, max],对应色带[0, 1]的值,也可进行自定义 displayRange参数表示会渲染的值范围,默认为波段的[min, max]