Skip to content

Commit

Permalink
[#850] [3.0] chart - seriesName, Axis Label 이 길어질 경우 예외 처리
Browse files Browse the repository at this point in the history
- tooltip / scrollbar /use 옵션을 tooltip / useScrollbar 로 변경
- overflow되는 text를 위한 처리 옵션 추가 (textOverflow)
   - wrap: 줄바꿈 처리 (기본값)
   - ellipsis : 생략 기호
- maxWidth / maxHeight 옵션 추가
- 관련 설명 .md 파일에 추가
  • Loading branch information
jhee564 committed Aug 4, 2021
1 parent 34e6e31 commit bafae5c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/views/lineChart/example/Tooltip.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<span class="item-title">
스크롤 생성여부
</span>
<ev-toggle v-model="isScrollable"/>
<ev-toggle v-model="useScrollbar"/>
</div>
</div>

Expand Down Expand Up @@ -111,7 +111,7 @@
export default {
setup() {
const sortByValue = ref(true);
const isScrollable = ref(true);
const useScrollbar = ref(true);
const maxWidth = ref(300);
const maxHeight = ref(300);
const useShadow = ref(false);
Expand Down Expand Up @@ -200,7 +200,7 @@
fontColor,
shadowOpacity,
useShadow,
useScrollbar: isScrollable,
useScrollbar,
maxWidth,
maxHeight,
textOverflow,
Expand Down Expand Up @@ -229,7 +229,7 @@
chartData,
chartOptions,
sortByValue,
isScrollable,
useScrollbar,
maxWidth,
maxHeight,
useShadow,
Expand Down

0 comments on commit bafae5c

Please sign in to comment.