In this blog, we will learn how we can create one random color in RGBA format by generating random numbers.
Problem:
We have a Canvas App, where we have created one Display Form. Here, we have displayed the list of categories of All Accounts in the color-coded format as shown in the below screenshot. In the below screen we want categories of all Accounts to be shown in color-coded format, so it is necessary to display all categories of Accounts in Unique colors. For this, we want to generate random colors for each industry and assign them to a specific category.
Solution:
We can generate the random color using Rand() or RandBetween() function in Canvas App. Please find the below syntax for the above function.
Syntax:
Rand() = This function will generate one random number greater than 0 but less than 1. For example 0.26786, 0.65784.
RandBetween(START_RANGE, END_RANGE) = This function will return the whole number between the range that we provide to the…
Source link