MCPcopy
hub / github.com/plotly/plotly.js / _getVisiblePointsData

Function _getVisiblePointsData

test/jasmine/tests/polar_test.js:1908–1915  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1906 }
1907
1908 function _getVisiblePointsData() {
1909 return Array.from(
1910 document.querySelectorAll('.point').entries(),
1911 function(e) { return e[1]; }
1912 )
1913 .filter(function(e) { return window.getComputedStyle(e).display !== 'none'; })
1914 .map(function(e) { return e.__data__; });
1915 }
1916
1917 var rVals = [100, 50, 50, 100];
1918 var thetaVals = [135, 135, 315, 315];

Callers 1

polar_test.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…