Replies: 2 comments
-
I tried these so far |
Beta Was this translation helpful? Give feedback.
0 replies
-
It's the https://github.com/nhn/tui.calendar/blob/main/docs/ko/apis/theme.md#month-dayname I'm not sure why there are borders out there because the default value is Why don't you open the browser devtools and inspect elements? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Version
v2.1.3
Test Environment
Chrome, MacOs, React, Typescipt
Current Behavior
// Write example code
<Calendar
ref={calendarRef}
height={height}
view="month"
isReadOnly={true}
calendars={calendars}
schedules={schedules}
usageStatistics={false}
theme={{ "common.border": "none", "month.dayName.borderRight": "none" }}
month={{
daynames: ["일", "월", "화", "수", "목", "금", "토"],
scheduleFilter: function (schedule) {
console.log("schedule:" + schedule);
return schedule.isVisible;
},
visibleWeeksCount: 1,
}}
/>
Expected Behavior
I want it to look clean with out any borders!
Beta Was this translation helpful? Give feedback.
All reactions