Answers for "random color chart js"

13

random color generator javascript

function generateRandomColor() {
  var letters = '0123456789ABCDEF';
  var color = '#';
  for (var i = 0; i < 6; i++) {
    color += letters[Math.floor(Math.random() * 16)];
  }
  return color;
}

var randomColor=generateRandomColor();//"#F10531"
Posted by: Guest on August-05-2019
5

random color code javascript

var randomColor = '#'+Math.floor(Math.random()*16777215).toString(16);
//generates a random color -> #56eec7
Posted by: Guest on June-26-2020
1

chartjs random color line

const r = Math.round (Math.random () * 255);
const g = Math.round (Math.random () * 255);
const b = Math.round (Math.random () * 255);

// some examples on where and how to use it
config.data.datasets.borderColor = `rgb (${r}, ${g}, ${b})`;
config.data.datasets.backgroundColor = `rgb (${r}, ${g}, ${b})`;
config.options.scales.yAxes.ticks.fontColor = `rgb(${r}, ${g}, ${b})`;
Posted by: Guest on November-13-2020
6

random color in javascript

var randomColor = Math.floor(Math.random()*16777215).toString(16);
Posted by: Guest on June-12-2020
2

javascript generate random color

const setBg = () => {
  const randomColor = Math.floor(Math.random()*16777215).toString(16);
  document.body.style.backgroundColor = "#" + randomColor;
  color.innerHTML = "#" + randomColor;
}

genNew.addEventListener("click", setBg);
setBg();
Posted by: Guest on October-07-2020
1

javascript random color

'#'+Math.floor(Math.random()*0xffffff).toString(16).padStart(6,'0');
Posted by: Guest on July-10-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language