3

最近,我将 Floats 更改为 FlexBox,以便更轻松地使用面板(正如我在其他问题上所建议的那样)。虽然大多数事情都按我的预期工作,但在更改后我遇到了 Apex Charts 的问题。

完整代码在这里: https ://github.com/EvotecIT/PSWriteHTML/blob/master/Examples/Example12-Charts/Example12.html

这是加载时的外观。您会注意到,在第一行和第二行图表中,即使它们所在的面板就位并且它适用于第一行,它们也会超出范围。

在此处输入图像描述

如果我确实调整大小(如 1 毫米),它将开始正常工作。

在此处输入图像描述

知道可能是什么问题吗?

在顶点图表 CSS 中,它有不使用溢出的注释(我尝试过但它没有做任何事情)但老实说,我什至忘记附加该 CSS 并且没有任何改变(就像一切都是由 JS.

        .apexcharts-canvas {
            position: relative;
            user-select: none;
            /* cannot give overflow: hidden as it will crop tooltips which overflow outside chart area */
        }

        /* scrollbar is not visible by default for the legend, hence forcing the visibility */

请记住,当谈到 JS/CSS/HTML 时,我完全是个菜鸟,所以请原谅我的语言。

4

1 回答 1

8

您需要将所有脚本移到最后,而不是注入 HTML 以允许 SVG 文档解析器正确获取元素的大小。

工作Codepen 示例

var options = {
  "chart": {
    "height": 350,
    "type": "line",
    "toolbar": {
      "show": true,
      "tools": {
        "download": true,
        "selection": true,
        "zoom": true,
        "zoomin": true,
        "zoomout": true,
        "pan": true,
        "reset": true
      },
      "autoSelected": "zoom"
    }
  },
  "plotOptions": {
    "bar": {
      "horizontal": true
    }
  },
  "dataLabels": {
    "enabled": true,
    "offsetX": -6,
    "style": {
      "fontSize": "12px",
      "colors": [
        null
      ]
    }
  },
  "series": [{
      "name": "People count",
      "data": [
        400,
        430,
        448
      ]
    },
    {
      "name": "People death",
      "data": [
        450,
        0,
        200
      ]
    }
  ],
  "xaxis": {
    "type": "category",
    "categories": [
      "2015",
      "2016",
      "2017"
    ]
  },
  "stroke": {
    "show": true,
    "curve": "straight",
    "width": 2,
    "colors": [
      "#0000ff",
      "#008000"
    ]
  },
  "legend": {
    "position": "right",
    "offsetY": 100,
    "height": 230
  },
  "title": {

  }
}

var chart = new ApexCharts(document.querySelector('#ChartID-2rhiatbe'),
  options
);
chart.render();
于 2019-03-24T18:14:12.600 回答