@@ -54,43 +54,43 @@ subtheme <- function(elements, prefix = "", suffix = "", call = caller_env()) {
54
54
55
55
# ' @export
56
56
# ' @describeIn subtheme Theme specification for all axes.
57
- theme_sub_axis <- function (title , text , ticks , ticks.length , line ) {
57
+ theme_sub_axis <- function (title , text , ticks , ticks.length , line , minor.ticks.length ) {
58
58
subtheme(find_args(), " axis." )
59
59
}
60
60
61
61
# ' @export
62
62
# ' @describeIn subtheme Theme specification for both x axes.
63
- theme_sub_axis_x <- function (title , text , ticks , ticks.length , line ) {
63
+ theme_sub_axis_x <- function (title , text , ticks , ticks.length , line , minor.ticks.length ) {
64
64
subtheme(find_args(), " axis." , " .x" )
65
65
}
66
66
67
67
# ' @export
68
68
# ' @describeIn subtheme Theme specification for both y axes.
69
- theme_sub_axis_y <- function (title , text , ticks , ticks.length , line ) {
69
+ theme_sub_axis_y <- function (title , text , ticks , ticks.length , line , minor.ticks.length ) {
70
70
subtheme(find_args(), " axis." , " .y" )
71
71
}
72
72
73
73
# ' @export
74
74
# ' @describeIn subtheme Theme specification for the bottom x axis.
75
- theme_sub_axis_bottom <- function (title , text , ticks , ticks.length , line ) {
75
+ theme_sub_axis_bottom <- function (title , text , ticks , ticks.length , line , minor.ticks , minor.ticks.length ) {
76
76
subtheme(find_args(), " axis." , " .x.bottom" )
77
77
}
78
78
79
79
# ' @export
80
80
# ' @describeIn subtheme Theme specification for the top x axis.
81
- theme_sub_axis_top <- function (title , text , ticks , ticks.length , line ) {
81
+ theme_sub_axis_top <- function (title , text , ticks , ticks.length , line , minor.ticks , minor.ticks.length ) {
82
82
subtheme(find_args(), " axis." , " .x.top" )
83
83
}
84
84
85
85
# ' @export
86
86
# ' @describeIn subtheme Theme specification for the left y axis.
87
- theme_sub_axis_left <- function (title , text , ticks , ticks.length , line ) {
87
+ theme_sub_axis_left <- function (title , text , ticks , ticks.length , line , minor.ticks , minor.ticks.length ) {
88
88
subtheme(find_args(), " axis." , " .y.left" )
89
89
}
90
90
91
91
# ' @export
92
92
# ' @describeIn subtheme Theme specification for the right y axis.
93
- theme_sub_axis_right <- function (title , text , ticks , ticks.length , line ) {
93
+ theme_sub_axis_right <- function (title , text , ticks , ticks.length , line , minor.ticks , minor.ticks.length ) {
94
94
subtheme(find_args(), " axis." , " .y.right" )
95
95
}
96
96
0 commit comments