How to set merge mode with android views #529
-
Anybody have an example? I have the following code, but it tells me the "mergeMode" property is not found.
|
Beta Was this translation helpful? Give feedback.
Answered by
patrickmichalik
Jan 10, 2024
Replies: 1 comment
-
Hello! Please try replacing |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
csbenz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello! Please try replacing
mergeMode = ColumnCartesianLayer.MergeMode.Stacked
withmergeMode = { ColumnCartesianLayer.MergeMode.Stacked }
. As can be seen here,mergeMode
is a lambda with aColumnCartesianLayerModel
parameter, enabling you to perform dynamicMergeMode
customization based on your chart’s data.