美文网首页
为图表计算高度

为图表计算高度

作者: 一块糖吧 | 来源:发表于2023-02-14 16:25 被阅读0次

 // 为图表计算高度

    chartssize (container, charts) {

      function getStyle (el, name) {

        if (window.getComputedStyle) {

          return window.getComputedStyle(el, null)

        } else {

          return el.currentStyle

        }

      }

      let hi = getStyle(container, 'height').height

      // scharts.style.width = wi  style="Width:100%; height:250px;"

      charts.style.height = hi

    },

相关文章

网友评论

      本文标题:为图表计算高度

      本文链接:https://www.haomeiwen.com/subject/tivekdtx.html