in plot-api/src/commonMain/kotlin/org/jetbrains/letsPlot/scale/XYContinuous.kt [53:79]
fun scaleXContinuous(
name: String? = null,
breaks: Any? = null,
labels: Any? = null,
lablim: Int? = null,
limits: Pair<Number?, Number?>? = null,
expand: List<Number>? = null,
naValue: Number? = null,
format: String? = null,
trans: String? = null,
position: String? = null
): Scale {
checkScaleExpand(expand)
return Scale(
aesthetic = Aes.X,
name = name,
breaks = breaks,
labels = labels,
lablim = lablim,
limits = limits,
expand = expand,
naValue = naValue,
format = format,
trans = trans,
position = position
)
}