()
| 355 | } |
| 356 | |
| 357 | function parcoordsInteractionState() { |
| 358 | var linePickActive = true; |
| 359 | var contextShown = false; |
| 360 | return { |
| 361 | linePickActive: function(val) {return arguments.length ? linePickActive = !!val : linePickActive;}, |
| 362 | contextShown: function(val) {return arguments.length ? contextShown = !!val : contextShown;} |
| 363 | }; |
| 364 | } |
| 365 | |
| 366 | function calcTilt(angle, position) { |
| 367 | var dir = (position === 'top') ? 1 : -1; |
no outgoing calls
no test coverage detected
searching dependent graphs…