opacityNumber

The element opacity. Inherited from Element.opacity

Example

<div id="surface"></div>
<script>
    var draw = kendo.drawing;
    var geom = kendo.geometry;

    var arcGeometry = new geom.Arc([100, 100], {
        radiusX: 35,
        radiusY: 35,
        startAngle: 0,
        endAngle: 180
    });
    var arc = new draw.Arc(arcGeometry, {
        fill: { color: "purple" },
        stroke: { color: "orange", width: 2 },
        opacity: 0.5
    });

    var surface = draw.Surface.create($("#surface"));
    surface.draw(arc);
</script>
In this article
opacity
Not finding the help you need?
Contact Support