Amchart 3-指南ID已分配给其DOM元素

时间:2019-04-24 13:27:31

标签: javascript css reactjs dom amcharts

我在React项目中使用Amchart 3。我在标签guides上遇到了重叠。

enter image description here

我正在尝试使用以下方法解决所提出的问题:

我添加了id属性是因为我在DOM元素“ guide-1”或“ guide-2”中找不到它。

  valueAxes: [
    {
      axisAlpha: 1,
      position: "right",
      gridColor: "transparent",
      unit: "$",
      unitPosition: "left",
      guides: [
        {
          id: "guide-1",
          value: projection,
          lineAlpha: 0.8,
          lineColor: "#858585",
          label: "Projection",
          position: "left",
          inside: true,
          above: true,
          color: "#354052"
        },
        {
          id: "guide-2 ",
          value: targetAmount,
          lineAlpha: 0.8,
          lineColor: "#858585",
          label: "Target Amount",
          position: "left",
          inside: true,
          above: true,
          color: "#354052"
        }
      ]
    }
  ]

那么为什么不为guides元素分配ID?

  

我正在使用序列号类型的图表

0 个答案:

没有答案