In this article I will show you to generate random color codes in c# .net implemented to display data with different color variation for chart.
Color randomColor = Color.FromKnownColor(randomColorName);
You need to include assembly reference using System.Drawing. You will get the generated color code like randomColor.Name.
var colorcode = randomColor.Name;
OR
private string getRandColor()
{
Random rnd = new Random();
string hexOutput = String.Format("{0:X}", rnd.Next(0, 0xFFFFFF));
while (hexOutput.Length < 6)
hexOutput = "0" + hexOutput;
return "#" + hexOutput;
}
The above private function will return the color code. You just call the function,
var colorcode = getRandColor();
Post your comments / questions
Recent Article
- How to enable Search Feature in Django admin?
- How to check PAN-Aadhaar is Linked or NOT?
- How to customize pagination for django admin?
- How to fix HAXM is not installed |in Android Studio
- How to fix CMOS Checksum Error in Computer or Laptop | SOLVED
- Reactivating windows after a Hardware change on PC or Laptop
- FIXED: Windows reported that the hardware of your device has changed. Error code :0xc004F211
- "redirect" is not defined pylance("reportUndefinedVariable)
Related Article