
--- client/resources/scss/admin/content.scss
+++ client/resources/scss/admin/content.scss
... | ... | @@ -309,7 +309,9 @@ |
309 | 309 |
.chart-wrap { |
310 | 310 |
padding: 3rem; |
311 | 311 |
border: 1px solid var(--tk-gray-10); |
312 |
- @include radius(30); |
|
312 |
+ @include radius(20); |
|
313 |
+ background-color: var(--tk-white); |
|
314 |
+ height:350px |
|
313 | 315 |
} |
314 | 316 |
|
315 | 317 |
|
--- client/views/pages/adm/statistics/BbsStatistics.vue
+++ client/views/pages/adm/statistics/BbsStatistics.vue
... | ... | @@ -57,7 +57,7 @@ |
57 | 57 |
명 |
58 | 58 |
</p> |
59 | 59 |
</div> |
60 |
- <div class="chart-wrap" ref="chartdiv" :style="heightStyle"> |
|
60 |
+ <div class="chart-wrap" ref="chartdiv"> |
|
61 | 61 |
<ClusteredBarChart :chartData="chartData" columnX="menu" /> |
62 | 62 |
</div> |
63 | 63 |
</div> |
... | ... | @@ -128,7 +128,7 @@ |
128 | 128 |
// 게시판 수 |
129 | 129 |
bbsCnt: 0, |
130 | 130 |
// 차트 높이 스타일 |
131 |
- heightStyle: {}, |
|
131 |
+ // heightStyle: {}, |
|
132 | 132 |
}; |
133 | 133 |
}, |
134 | 134 |
created() { |
... | ... | @@ -167,9 +167,9 @@ |
167 | 167 |
} |
168 | 168 |
this.chartData = datas; |
169 | 169 |
this.totalCnt = response.data.data.totalCnt; |
170 |
- this.heightStyle = { |
|
171 |
- height: 100 + 100 * datas.length + "px", |
|
172 |
- }; |
|
170 |
+ // this.heightStyle = { |
|
171 |
+ // height: 100 + 100 * datas.length + "px", |
|
172 |
+ // }; |
|
173 | 173 |
this.bbsCnt = response.data.data.bbsCnt; |
174 | 174 |
} |
175 | 175 |
} catch (error) { |
--- client/views/pages/adm/statistics/MenuStatistics.vue
+++ client/views/pages/adm/statistics/MenuStatistics.vue
... | ... | @@ -57,7 +57,7 @@ |
57 | 57 |
명 |
58 | 58 |
</p> |
59 | 59 |
</div> |
60 |
- <div class="chart-wrap" ref="chartdiv" :style="heightStyle"> |
|
60 |
+ <div class="chart-wrap" ref="chartdiv"> |
|
61 | 61 |
<ClusteredBarChart :chartData="chartData" columnX="menu" /> |
62 | 62 |
</div> |
63 | 63 |
</div> |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?