Skip to content

Commit

Permalink
Fix detection of continuous aes for tooltips.
Browse files Browse the repository at this point in the history
  • Loading branch information
OLarionova-HORIS committed Dec 3, 2020
1 parent 14508c6 commit b82ca3e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ object GeomInteractionUtil {
): List<Aes<*>> {

fun isVariableContinuous(aes: Aes<*>): Boolean {
return scaleMap.containsKey(aes) && scaleMap[aes].isContinuous
return scaleMap.containsKey(aes) && (scaleMap[aes].isContinuous || scaleMap[aes].isContinuousDomain)
}

// remove axis mapping: if aes and axis are bound to the same data
Expand Down

0 comments on commit b82ca3e

Please sign in to comment.