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
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI/UX Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
On a page I have several charts and a button to export all charts to png.
Is it possible to "stamp" the current date into either the charts or the produced png file?
from this http://docs.telerik.com/kendo-ui/controls/charts/how-to/donut-chart-hole-text I was able to draw current datetime on the chart this way:
render:
function
(e) {
var
draw = kendo.drawing;
d =
new
Date();
text =
draw.Text(kendo.toString(d,
'dd-MMM-yyyy HH:mm'
), [0, 0], { font:
"8px Verdana,Arial,sans-serif"
});
e.sender.surface.draw(text);
}
How do I position the datetime at position bottom/right with a little margin?