bNumber
The blue channel of the color, in the range from 0 to 1.
Example
<script>
var color = kendo.parseColor("#0000ff");
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(color.b); // logs 1
var redColor = kendo.parseColor("#ff0000");
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(redColor.b); // logs 0
</script>
In this article