i would to convert chart to image, iwish that can saving to png or jpeg how to save kendo ui chart to image using PHP or java script
我想将图表转换为图像,我希望可以保存到png或jpeg如何使用PHP或java脚本将kendo ui图表保存到图像
2 个解决方案
#1
0
Have a look at these:
看看这些:
http://docs.kendoui.com/api/dataviz/chart#methods-svg
http://docs.kendoui.com/api/dataviz/chart#methods-imageDataURL
I've had mixed success with the svg export, but to be fair mine wasn't an "out-of-the-box" scenario.
我在svg出口方面取得了不一样的成功,但公平地说,我并不是一个“开箱即用”的方案。
#2
0
With HTML 5 you can use this JavaScript:
使用HTML 5,您可以使用此JavaScript:
var image = chart.imageDataURL(); //Kendo UI
var a = $("<a>").attr("href", image).attr("download", "img.png").appendTo("body");
a[0].click();
a.remove();
#1
0
Have a look at these:
看看这些:
http://docs.kendoui.com/api/dataviz/chart#methods-svg
http://docs.kendoui.com/api/dataviz/chart#methods-imageDataURL
I've had mixed success with the svg export, but to be fair mine wasn't an "out-of-the-box" scenario.
我在svg出口方面取得了不一样的成功,但公平地说,我并不是一个“开箱即用”的方案。
#2
0
With HTML 5 you can use this JavaScript:
使用HTML 5,您可以使用此JavaScript:
var image = chart.imageDataURL(); //Kendo UI
var a = $("<a>").attr("href", image).attr("download", "img.png").appendTo("body");
a[0].click();
a.remove();