diff --git a/client/app/scripts/charts/node-shape-stack.js b/client/app/scripts/charts/node-shape-stack.js index 4f39e5d79..70d8ff5b9 100644 --- a/client/app/scripts/charts/node-shape-stack.js +++ b/client/app/scripts/charts/node-shape-stack.js @@ -12,23 +12,22 @@ export default function NodeShapeStack(props) { const propsOnlyHighlight = Object.assign({}, props, {onlyHighlight: true}); const Shape = props.shape; - const [dx, dy] = [0, 6]; - const ds = 0.075; - const dsx = (props.size * 2 + dx) / (props.size * 2); - const dsy = (props.size * 2 + dy) / (props.size * 2); + const [dx, dy] = [0, 4]; + const dsx = (props.size * 2 + (dx * 2)) / (props.size * 2); + const dsy = (props.size * 2 + (dy * 2)) / (props.size * 2); const hls = [dsx, dsy]; return ( - - - - - - - + + + + + + + );