scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
34 lines (33 loc) • 1.78 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EStrokeLineJoin = void 0;
/**
* The SVG stroke-linejoin attribute specifies the shape to be used at the corners of paths or basic shapes when they are stroked.
* @link https://developer.mozilla.org/en-US/docs/Web/SVG/Attribute/stroke-linejoin
*
* Default = `round`
*/
var EStrokeLineJoin;
(function (EStrokeLineJoin) {
/**
* The `arcs` value indicates that an arcs corner is to be used to join path segments. The arcs shape is formed by extending the outer edges of the stroke at the join point with arcs that have the same curvature as the outer edges at the join point.
*/
EStrokeLineJoin["Arcs"] = "arcs";
/**
* The `bevel` value indicates that a bevelled corner is to be used to join path segments.
*/
EStrokeLineJoin["Bevel"] = "bevel";
/**
* The `miter` value indicates that a sharp corner is to be used to join path segments. The corner is formed by extending the outer edges of the stroke at the tangents of the path segments until they intersect.
*/
EStrokeLineJoin["Miter"] = "miter";
/**
* The miter-clip value indicates that a sharp corner is to be used to join path segments. The corner is formed by extending the outer edges of the stroke at the tangents of the path segments until they intersect.
* @note The miter-clip value as been introduced in SVG2 and it isn't widely supported yet
*/
EStrokeLineJoin["MiterClip"] = "miter-clip";
/**
* The `round` value indicates that a round corner is to be used to join path segments
*/
EStrokeLineJoin["Round"] = "round";
})(EStrokeLineJoin = exports.EStrokeLineJoin || (exports.EStrokeLineJoin = {}));