fun combined()

in plot-api/src/commonMain/kotlin/org/jetbrains/letsPlot/bistro/corr/OptionsConfigurator.kt [165:175]


        fun combined(type: String?, otherType: String): String {
            return if (type == null || otherType == "full") {
                otherType
            } else if (type == "full") {
                type
            } else if (overlap(type, otherType)) {
                type
            } else {
                "full"
            }
        }