UNPKG

d3-graphviz

Version:

Graphviz DOT rendering and animated transitions for D3

13 lines (10 loc) 315 B
export default function(keyMode) { if (!this._keyModes.has(keyMode)) { throw Error('Illegal keyMode: ' + keyMode); } if (keyMode != this._options.keyMode && this._data != null) { throw Error('Too late to change keyMode'); } this._options.keyMode = keyMode; return this; };