@@ -15,22 +15,22 @@ import jetbrains.letsPlot.intern.checkScaleExpand
15
15
/* *
16
16
* Position scale x for date/time data.
17
17
*
18
- * @param name string
18
+ * @param name
19
19
* The name of the scale - used as the axis label or the legend title. If None, the default, the name of the scale
20
20
* is taken from the first mapping used for that aesthetic.
21
- * @param breaks list of numeric
21
+ * @param breaks
22
22
* A numeric vector of positions (of ticks).
23
- * @param labels list of strings
23
+ * @param labels
24
24
* A vector of labels (on ticks).
25
- * @param limits pair
25
+ * @param limits
26
26
* A numeric vector of length two providing limits of the scale.
27
- * @param expand list of numbers
27
+ * @param expand
28
28
* A numeric vector of length two giving multiplicative and additive expansion constants.
29
29
* The vector size == 1 => only multiplicative expand (and additive expand by default).
30
30
* Defaults: multiplicative = 0.05, additive = 0.
31
31
* @param naValue
32
32
* Missing values will be replaced with this value.
33
- * @param format string
33
+ * @param format
34
34
* Defines the format for labels on the scale. Also applies to `breaks`.
35
35
*
36
36
*
@@ -75,22 +75,22 @@ fun scaleXDateTime(
75
75
/* *
76
76
* Position scale y for date/time data.
77
77
*
78
- * @param name string
78
+ * @param name
79
79
* The name of the scale - used as the axis label or the legend title. If None, the default, the name of the scale
80
80
* is taken from the first mapping used for that aesthetic.
81
- * @param breaks list of numerics
81
+ * @param breaks
82
82
* A numeric vector of positions (of ticks).
83
- * @param labels list of strings
83
+ * @param labels
84
84
* A vector of labels (on ticks).
85
- * @param limits pair
85
+ * @param limits
86
86
* A numeric vector of length two providing limits of the scale.
87
- * @param expand list of numbers
87
+ * @param expand
88
88
* A numeric vector of length two giving multiplicative and additive expansion constants.
89
89
* The vector size == 1 => only multiplicative expand (and additive expand by default).
90
90
* Defaults: multiplicative = 0.05, additive = 0.
91
91
* @param naValue
92
92
* Missing values will be replaced with this value.
93
- * @param format string
93
+ * @param format
94
94
* Defines the format for labels on the scale. Also applies to `breaks`.
95
95
*
96
96
*
@@ -135,16 +135,16 @@ fun scaleYDateTime(
135
135
/* *
136
136
* Position scale x for data representing "time delta" values expressed in milliseconds.
137
137
*
138
- * @param name string
138
+ * @param name
139
139
* The name of the scale - used as the axis label or the legend title.
140
140
* If None, the default, the name of the scale is taken from the first mapping used for that aesthetic.
141
- * @param breaks list of numeric
141
+ * @param breaks
142
142
* A numeric vector of positions (of ticks).
143
- * @param labels list of strings
143
+ * @param labels
144
144
* A vector of labels (on ticks).
145
- * @param limits pair
145
+ * @param limits
146
146
* A numeric vector of length two providing limits of the scale.
147
- * @param expand list of numbers
147
+ * @param expand
148
148
* A numeric vector of length two giving multiplicative and additive expansion constants.
149
149
* The vector size == 1 => only multiplicative expand (and additive expand by default).
150
150
* Defaults: multiplicative = 0.05, additive = 0.
@@ -180,16 +180,16 @@ fun scaleXTime(
180
180
/* *
181
181
* Position scale y for data representing "time delta" values expressed in milliseconds.
182
182
*
183
- * @param name string
183
+ * @param name
184
184
* The name of the scale - used as the axis label or the legend title.
185
185
* If None, the default, the name of the scale is taken from the first mapping used for that aesthetic.
186
- * @param breaks list of numerics
186
+ * @param breaks
187
187
* A numeric vector of positions (of ticks).
188
- * @param labels list of strings
188
+ * @param labels
189
189
* A vector of labels (on ticks).
190
- * @param limits pair
190
+ * @param limits
191
191
* A numeric vector of length two providing limits of the scale.
192
- * @param expand list of numbers
192
+ * @param expand
193
193
* A numeric vector of length two giving multiplicative and additive expansion constants.
194
194
* The vector size == 1 => only multiplicative expand (and additive expand by default).
195
195
* Defaults: multiplicative = 0.05, additive = 0.
0 commit comments