Open In App

HTML canvas miterLimit Property

The miterLimit property is used to or returns the maximum miter length. It is used to prevent the miter length from being too long. The miter length is the distance between the inner corner and the outer corner where two lines meet. 

Syntax:



context.miterLimit = number;

Property Values:

Example: 






<!DOCTYPE html>
<html>
 
<body>
    <center>
        <h1 style="color:green"> GeeksforGeeks </h1>
        <h3>Canvas miterLimit Property</h3>
        <canvas id="gfgCanvas"
                width="400"
                height="200"
                style="border:2px solid ">
        </canvas>
 
        <script>
            let gfg = document.getElementById("gfgCanvas");
            let context = gfg.getContext("2d");
            context.lineWidth = 10;
            context.lineJoin = "miter";
            context.miterLimit = 5;
            context.moveTo(80, 80);
            context.lineTo(200, 108);
            context.lineTo(80, 136);
            context.stroke();
        </script>
    </center>
 
</body>
   
</html>

Output:

  

Supported Browsers: The browsers supported by HTML canvas miterLimit Property are listed below:

Article Tags :