Languages
[Edit]
EN

JavaScript - how to fill circle with certain color on canvas element?

5 points
Created by:
Nathanial-Donald
554

Simple solution:

context.fillStyle = color;

context.beginPath();
context.arc(x, y, radius, 0, 2 * Math.PI);
context.fill();

 

Using JavaScript it is possible to draw filled circle with certain color in following way.

1. fillStyle property and arc() method example

// ONLINE-RUNNER:browser;

<!doctype html>
<html>
<head>
  <style>
    
    #my-canvas { border: 1px solid gray; }
    
  </style>
</head>
<body>
  <canvas id="my-canvas" width="200" height="200"></canvas>
  <script>

    var canvas = document.querySelector('#my-canvas');
    var context = canvas.getContext('2d');

    function fillCircle(x, y, radius, color) {

        context.fillStyle = color;

        context.beginPath();
        context.arc(x, y, radius, 0, 2 * Math.PI);
        context.fill();
    }

    fillCircle(100, 100, 80, 'yellow');

  </script>
</body>
</html>

See also

  1. JavaScript - how to draw circle on canvas element?

Merged questions

  1. JavaScript - how to draw filled circle with certain color on canvas element? 
Donate to Dirask
Our content is created by volunteers - like Wikipedia. If you think, the things we do are good, donate us. Thanks!
Join to our subscribers to be up to date with content, news and offers.

JavaScript - HTML5 canvas tutorial

Native Advertising
🚀
Get your tech brand or product in front of software developers.
For more information Contact us
Dirask - we help you to
solve coding problems.
Ask question.

❤️💻 🙂

Join