728x90
dayjs 빼기
참고 : https://day.js.org/docs/en/manipulate/subtract
const day = '2021-08-01T00:00:00'
console.log(day);
const sStartTime = dayjs(day).subtract(1, 'day');
dayjs 더하기
참고 👉 https://day.js.org/docs/en/durations/add
const a = dayjs();
a.add(2, 'days');
dayjs format 설정
실 사용 코드
function __() {
// this.chartOptions.scales.xAxis.min '2021-08-12T17:00:42';
// this.chartOptions.scales.xAxis.max '2021-10-15T17:00:42';
const sStartTime = dayjs(this.chartOptions.scales.xAxis.min).subtract(this.pIntervalInfo.value, this.pIntervalInfo.type).format('YYYY-MM-DDThh:mm:ss');
const sEndTime = dayjs(this.chartOptions.scales.xAxis.max).add(this.pIntervalInfo.value, this.pIntervalInfo.type).format('YYYY-MM-DDThh:mm:ss');
this.chartOptions.scales.xAxis.min = sStartTime; //'2021-08-11T17:00:42';
this.chartOptions.scales.xAxis.max = sEndTime; //'2021-10-16T17:00:42';
}
728x90
'라이브러리 도구' 카테고리의 다른 글
[VSCODE] Github에 코드 올리는 방법 (0) | 2021.12.26 |
---|---|
[chart.js in vue.js] data label 없애는 설정 방법 (0) | 2021.11.11 |
[chartjs] tooltip 설정 방법 (2) | 2021.11.08 |
tailwindcss 사용법 알아보기 (0) | 2021.11.06 |
[chart.js] 사용 팁 (0) | 2021.09.09 |
댓글