自定义 React D3 树版本 3.5.1

问题描述 投票:0回答:0

目前在我的 React 应用程序中使用 react-d3-tree 库。我正在使用以下代码来装饰我的节点,我想要盒子阴影。但它不工作。谁能发现我现在使用 LTS 版本的错误

'

const renderRectSvgNode = ({ nodeDatum, toggleNode }) => (
  <g>
    <rect
      width="118"
      height="40"
      x="-56"
      onClick={toggleNode}
      style={{
        fill: "white",
        boxShadow: "0px 10px 10px rgba(0, 0, 0, 0.1)",
        stroke: "none",
      }}
    />
    <text
      fill="black"
      strokeWidth="1"
      x="0"
      y="25"
      dominantBaseline="middle"
      textAnchor="middle"
    >
      {nodeDatum.name}
    </text>
  </g>
);'

我想知道在我的 react-d3-tree 中显示框阴影而不是轮廓框的技巧

reactjs d3.js treeview react-d3
© www.soinside.com 2019 - 2024. All rights reserved.