Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
MCP Servers
AI for UI
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
Sets the shape stroke.
The stroke color to set.
The current instance to allow chaining.
<div id="surface"></div> <script> var draw = kendo.drawing; var geom = kendo.geometry; var arcGeometry = new geom.Arc([100, 100], { radiusX: 25, radiusY: 35, startAngle: 45, endAngle: 270 }); var arc = new draw.Arc(arcGeometry); // Set stroke color, width, and opacity arc.stroke("darkgreen", 4, 0.8); var surface = draw.Surface.create($("#surface")); surface.draw(arc); // Change stroke after 2 seconds setTimeout(() => { arc.stroke("red", 2, 1); }, 2000); </script>