diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-07-17 17:06:28 +0200 |
---|---|---|
committer | Thomas F. K. Jorna <[email protected]> | 2021-07-17 17:06:28 +0200 |
commit | 47bdd66bcf8cdb90ab31b6f0a129c2120fa01d77 (patch) | |
tree | 67b519decdf9140a697bf1460762bc6db0a168c2 /app | |
parent | 9b07c03ef511c71fc118e2637ee3a4af326e7638 (diff) |
labels now fade instead of cut in
Diffstat (limited to 'app')
-rw-r--r-- | app/components/graph/graph.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/components/graph/graph.tsx b/app/components/graph/graph.tsx index bf5aff7..1b3bab8 100644 --- a/app/components/graph/graph.tsx +++ b/app/components/graph/graph.tsx @@ -207,12 +207,12 @@ export const Graph = observer(function Graph(props: GraphProps): JSX.Element { const textWidth = ctx.measureText(label).width; const bckgDimensions = [textWidth, fontSize].map(n => n + fontSize * 0.2); // some padding - ctx.fillStyle = 'rgba(20, 20, 20, 0.8)'; + ctx.fillStyle = 'rgba(20, 20, 20, ' + Math.min((globalScale - physics.labelScale)/physics.labelScale, 1) + ')'; ctx.fillRect(node.x - bckgDimensions[0] / 2, node.y - bckgDimensions[1] / 2, ...bckgDimensions); ctx.textAlign = 'center'; ctx.textBaseline = 'middle'; - ctx.fillStyle = "#ffffff"; //node.color; + ctx.fillStyle = 'rgb(255, 255, 255, ' + Math.min(4*(globalScale - physics.labelScale)/physics.labelScale, 1) + ')'; ctx.fillText(label, node.x, node.y); node.__bckgDimensions = bckgDimensions; // to re-use in nodePointerAreaPaint |