You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add an API for defining scale as a actual function.
Something like that:
scale = continuous {
x -> Color.rgb(0, 0, x / 100 * 256)
}
scale = categorical { x ->
when (x) {
"" -> LineType.SOLID
}
}
Implementation = direct applying + identity scale (#402), but there's problems with column id, should we save both original and transformed column, etc.
The text was updated successfully, but these errors were encountered:
Add an API for defining scale as a actual function.
Something like that:
Implementation = direct applying + identity scale (#402), but there's problems with column id, should we save both original and transformed column, etc.
The text was updated successfully, but these errors were encountered: