(src, callback)
| 1225 | } |
| 1226 | |
| 1227 | function renderDot (src, callback) { |
| 1228 | var graphvizInstance = this; |
| 1229 | this.dot(src, render); |
| 1230 | function render() { |
| 1231 | graphvizInstance.render(callback); |
| 1232 | } |
| 1233 | return this; |
| 1234 | } |
| 1235 | |
| 1236 | function transition (name) { |
| 1237 | if (name instanceof Function) { |