File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -712,6 +712,8 @@ axes.calcTicks = function calcTicks(ax, opts) {
712
712
! _has ( '%X' ) // the locale’s time, such as %-I:%M:%S %p
713
713
) {
714
714
if (
715
+ _has ( '%A' ) || // full weekday name
716
+ _has ( '%a' ) || // abbreviated weekday name
715
717
_has ( '%d' ) || // zero-padded day of the month as a decimal number [01,31]
716
718
_has ( '%e' ) || // space-padded day of the month as a decimal number [ 1,31]
717
719
_has ( '%j' ) || // day of the year as a decimal number [001,366]
@@ -720,8 +722,6 @@ axes.calcTicks = function calcTicks(ax, opts) {
720
722
_has ( '%x' ) // the locale’s date, such as %-m/%-d/%Y
721
723
) definedDelta = ONEDAY ;
722
724
else if (
723
- _has ( '%A' ) || // full weekday name
724
- _has ( '%a' ) || // abbreviated weekday name
725
725
_has ( '%U' ) || // Sunday-based week of the year as a decimal number [00,53]
726
726
_has ( '%V' ) || // ISO 8601 week of the year as a decimal number [01, 53]
727
727
_has ( '%W' ) // Monday-based week of the year as a decimal number [00,53]
You can’t perform that action at this time.
0 commit comments