converts a decimal number to the hexadecimal format
number | number | the decimal number |
length | number | the length of the hexadecimal number |
string | the hexadecimal number |
webix.color.toHex(123456);// -> "1E240"
webix.color.toHex(123456, 10);// -> "000001E240"
Note that the length parameter is used to add leading zeros to the number.