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.
38 lines
675 B
38 lines
675 B
7 years ago
|
# complex_canvas
|
||
|
|
||
7 years ago
|
## 复杂的canvas绘图
|
||
|
|
||
|
{% method %}
|
||
|
[source](https://jsfiddle.net/fineui/psozjkgn/)
|
||
|
|
||
|
{% common %}
|
||
|
```javascript
|
||
|
|
||
|
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.stroke();
|
||
|
|
||
|
|
||
|
```
|
||
|
|
||
|
{% endmethod %}
|
||
|
|
||
|
## 对外方法
|
||
|
| 名称 | 说明 | 回调参数
|
||
|
| :------ |:------------- | :-----
|
||
|
| branch | 绘制树枝节点| (x0, y0, x1, y1, x2, y2) (以x0, y0为根节点,分支到x1,y1, x2,y2...)|
|
||
|
| stroke | 绘制 | |
|
||
|
|
||
|
---
|
||
|
|
||
|
|