为图表计算高度

2023-02-14  本文已影响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

    },

上一篇 下一篇

猜你喜欢

热点阅读