(d, trace)
| 1826 | }; |
| 1827 | |
| 1828 | function getMarkerStandoff(d, trace) { |
| 1829 | var standoff; |
| 1830 | |
| 1831 | if (d) standoff = d.mf; |
| 1832 | |
| 1833 | if (standoff === undefined) { |
| 1834 | standoff = trace.marker ? trace.marker.standoff || 0 : 0; |
| 1835 | } |
| 1836 | |
| 1837 | if (!trace._geo && !trace._xA) { |
| 1838 | // case of legends |
| 1839 | return -standoff; |
| 1840 | } |
| 1841 | |
| 1842 | return standoff; |
| 1843 | } |
| 1844 | |
| 1845 | drawing.getMarkerStandoff = getMarkerStandoff; |
| 1846 |
no outgoing calls
no test coverage detected
searching dependent graphs…