// 为图表计算高度
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
},