Skip to content

Commit e189abd

Browse files
committed
fix(#777): autoresize does not work when reducing height
1 parent f07855d commit e189abd

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 6.6.10
2+
3+
* Fixed that `autoresize` doesn't work when reducing the height or the root element.
4+
15
## 6.6.9
26

37
* Fixed that the chart may not be the same size as the component root element ([#761](https://github.com/ecomfe/vue-echarts/issues/761)).

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue-echarts",
3-
"version": "6.6.9",
3+
"version": "6.6.10",
44
"description": "Vue.js component for Apache ECharts™.",
55
"author": "GU Yiling <[email protected]>",
66
"scripts": {

src/style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
x-vue-echarts{display:flex;flex-direction:column;width:100%;height:100%;min-width:0}
2-
.vue-echarts-inner{flex-grow:1;min-width:0}
1+
x-vue-echarts{display:block;position:relative;width:100%;height:100%;min-width:0}
2+
.vue-echarts-inner{position:absolute;top:0;right:0;bottom:0;left:0}

0 commit comments

Comments
 (0)