Last active
August 29, 2015 14:07
-
-
Save Orbifold/edcf7dfcbf7b750812b4 to your computer and use it in GitHub Desktop.
Kendo diagram, PDF and drawing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Kendo Diagramming</title> | |
<link rel="stylesheet/less" type="text/css" href="../../styles/web/kendo.common.less"/> | |
<link rel="stylesheet/less" type="text/css" href="../../styles/web/kendo.default.less"/> | |
<link rel="stylesheet/less" type="text/css" href="../../styles/dataviz/kendo.dataviz.less"/> | |
<link rel="stylesheet/less" type="text/css" href="../../styles/dataviz/kendo.dataviz.default.less"/> | |
<script type="text/javascript" src="../../demos/mvc/content/shared/js/less.js"></script> | |
<link rel="stylesheet" type="text/css" href="styles.css"/> | |
<script src="../require.js"></script> | |
<script> | |
require.config({ | |
baseUrl: "../../src/" | |
}); | |
</script> | |
</head> | |
<body> | |
<button id="drawButton">Draw</button> | |
<button id="pdfButton">PDF</button> | |
<div id="diagram"></div> | |
<script> | |
require([ | |
"jquery.min", "kendo.dataviz.diagram", "kendo.menu", "kendo.splitter", | |
"kendo.panelbar", "kendo.colorpicker", "kendo.dropdownlist", "kendo.numerictextbox" ], function () { | |
var Shape = kendo.dataviz.diagram.Shape, | |
Connection = kendo.dataviz.diagram.Connection, | |
Rect = kendo.dataviz.diagram.Rect; | |
var drawing = kendo.dataviz.drawing; | |
var diagram = $("#diagram").kendoDiagram({ | |
theme: "default", | |
shapeDefaults: { | |
width: 120, | |
height: 80 | |
} | |
//select: diagramSelect | |
}).getKendoDiagram(); | |
var s1 = diagram.addShape({ | |
x: 100, | |
y: 100, | |
content: {text: "Agraphia"} | |
}); | |
var s2 = diagram.addShape({ | |
x: 500, | |
y: 100, | |
content: {text: "Bradykinesia"} | |
}); | |
var con = diagram.connect(s1, s2); | |
kendo.pdf.defineFont({ | |
"Verdana": "./Verdana/Verdana.ttf", | |
"Verdana|Bold": "./Verdana/Verdana_Bold.ttf", | |
"Verdana|Bold|Italic": "./Verdana/Verdana_Bold_Italic.ttf", | |
"Verdana|Italic": "./Verdana/Verdana_Italic.ttf" | |
}); | |
function container() { | |
$(".surface").remove(); | |
return $("<div class='surface' style='position: absolute; background: white; right: 1em; top: 1em; bottom: 1em; width: 600px'></div>").appendTo(document.body); | |
} | |
window.draw = function draw(sel, type) { | |
var el = $(sel)[0]; | |
console.time("drawing"); | |
kendo.dataviz.drawing.drawDOM(el).done(function(root){ | |
console.timeEnd("drawing"); | |
var surface = kendo.dataviz.drawing.Surface.create(container(), { type: type || "svg" }); | |
surface.draw(root); | |
}); | |
} | |
window.pdf = function pdf(sel) { | |
var el = $(sel)[0]; | |
console.time("pdf"); | |
kendo.dataviz.drawing.drawDOM(el).done(function(root){ | |
root.options.set("pdf", { | |
paperSize: "auto", | |
margin: { | |
left: "10mm", | |
top: "10mm", | |
right: "10mm", | |
bottom: "10mm" | |
} | |
}); | |
kendo.dataviz.drawing.pdf.saveAs(root, "kendo-diagram.pdf", "http://kendo.local:7569/", function(){ | |
console.timeEnd("pdf"); | |
}); | |
}); | |
}; | |
$("#drawButton").click(function () { | |
draw("#diagram","svg"); | |
}); | |
$("#pdfButton").click(function () { | |
pdf("#diagram"); | |
}); | |
}); | |
</script> | |
</body> | |
</html> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Needed to hack it like this to make it work:
the svgVisual is either an SVG element or a deferred kendo.dataviz.drawing.drawDOM(something). Internally the redraw and drawContainer methods are called, hence the dummies.
Very happy it works, just not very elegant, is it?