You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
787 B
35 lines
787 B
8 years ago
|
Demo.Func = BI.inherit(BI.Widget, {
|
||
|
props: {
|
||
|
baseCls: "demo-func"
|
||
|
},
|
||
|
|
||
|
render: function () {
|
||
|
var canvas = BI.createWidget({
|
||
|
type: "bi.complex_canvas",
|
||
|
width: 500,
|
||
|
height: 600
|
||
|
});
|
||
|
canvas.branch(55, 100, 10, 10, 100, 10, 200, 10, {
|
||
|
offset: 20,
|
||
|
strokeStyle: "red",
|
||
|
lineWidth: 2
|
||
|
});
|
||
|
|
||
|
canvas.branch(220, 155, 120, 110, 150, 200, {
|
||
|
offset: 40
|
||
|
});
|
||
|
|
||
|
canvas.stroke();
|
||
|
|
||
|
BI.createWidget({
|
||
|
type: "bi.absolute",
|
||
|
element: this,
|
||
|
items: [{
|
||
|
el: canvas,
|
||
|
left: 100,
|
||
|
top: 50
|
||
|
}]
|
||
|
})
|
||
|
}
|
||
|
});
|
||
|
$.shortcut("demo.complex_canvas", Demo.Func);
|