no message

Former-commit-id: aba868765c65a399c21474275363068466f5a7cd
Former-commit-id: aa248149801b9e6cc2135756aa69c5311526e1cd
Former-commit-id: 0d19e9d79b67c87a9740d2ad158ee76edfd104d8
This commit is contained in:
李杨
2018-02-17 12:07:58 +08:00
parent 90542c77bd
commit 4c6838f87a

View File

@@ -97,7 +97,7 @@ export default {
methods: {
// 创建图表对象
creatChart () {
// API http://antv.alipay.com/zh-cn/g2/3.x/api/chart.html
// http://antv.alipay.com/zh-cn/g2/3.x/api/chart.html
this.chart = new this.G2.Chart({
// 对应图表的 DOM 容器
container: this.$refs.chart,
@@ -123,8 +123,13 @@ export default {
},
// 重绘大小
resize (width, height) {
// 如果已经初始化过图表
if (this.chart) {
this.chart.changeSize(width || this.G2.DomUtil.getWidth(this.$refs.chart), height || this.G2.DomUtil.getHeight(this.$refs.chart))
const w = width || this.G2.DomUtil.getWidth(this.$refs.chart)
const h = height || this.G2.DomUtil.getHeight(this.$refs.chart)
this.chart.changeSize(w, h)
} else {
// 以后看着办
}
}
}