d3-flame-graph
d3-flame-graph copied to clipboard
A D3.js plugin that produces flame graphs from hierarchical data.
Bumps [qs](https://github.com/ljharb/qs) and [express](https://github.com/expressjs/express). These dependencies needed to be updated together. Updates `qs` from 6.7.0 to 6.11.0 Changelog Sourced from qs's changelog. 6.11.0 [New] [Fix] stringify: revert 0e903c0; add commaRoundTrip...
Bumps [decode-uri-component](https://github.com/SamVerschueren/decode-uri-component) from 0.2.0 to 0.2.2. Release notes Sourced from decode-uri-component's releases. v0.2.2 Prevent overwriting previously decoded tokens 980e0bf https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.1...v0.2.2 v0.2.1 Switch to GitHub workflows 76abc93 Fix issue where decode...
Bumps [loader-utils](https://github.com/webpack/loader-utils) to 3.2.1 and updates ancestor dependency [react-dev-utils](https://github.com/facebook/create-react-app/tree/HEAD/packages/react-dev-utils). These dependencies need to be updated together. Updates `loader-utils` from 2.0.0 to 3.2.1 Release notes Sourced from loader-utils's releases. v3.2.1 3.2.1...
Bumps [d3-color](https://github.com/d3/d3-color) from 3.0.1 to 3.1.0. Release notes Sourced from d3-color's releases. v3.1.0 Add rgb.clamp and hsl.clamp. #102 Add color.formatHex8. #103 Fix color.formatHsl to clamp values to the expected range....
update the zoom function in flamegraph.js ``` function zoom (d) { if (tooltip) tooltip.hide() const updateChart = () => { hideSiblings(d) show(d) fadeAncestors(d) update() } if (scrollOnZoom) { const chartOffset...
Bumps [immer](https://github.com/immerjs/immer) and [react-dev-utils](https://github.com/facebook/create-react-app/tree/HEAD/packages/react-dev-utils). These dependencies needed to be updated together. Updates `immer` from 8.0.1 to 9.0.15 Release notes Sourced from immer's releases. v9.0.15 9.0.15 (2022-06-13) Bug Fixes Add "types"...
Bumps [shell-quote](https://github.com/substack/node-shell-quote) and [react-dev-utils](https://github.com/facebook/create-react-app/tree/HEAD/packages/react-dev-utils). These dependencies needed to be updated together. Updates `shell-quote` from 1.7.2 to 1.7.3 Changelog Sourced from shell-quote's changelog. 1.7.3 Fix a security issue where the regex...
when adding random color to decide the color of each frame using this function ``` function colorMapper(d, originalColor) { const colors = ['#84D67B', '#9CDE95', '#B5E6AF', '#CDEECA', '#CDEECA']; return colors[Math.floor(Math.random() *...
I think flamegraph/dist bundles a copy of many d3 functions, increasing page weight and risking version skew. **To Reproduce** - Open https://cdn.jsdelivr.net/npm/[email protected]/dist/d3-flamegraph.js - Search for `node_modules/d3-` - note 139 matches,...
It would be nice to support an equivalent of the original flamegraph's `--reverse` option: see https://github.com/brendangregg/FlameGraph/blob/a8d807a11c0f22871134324bda709618ca482b58/flamegraph.pl#L119. It's not the same ask as #73, which is turning the graph upside down,...