How it is possible to select a specific mark on a chart? I think you planed this because I see some references in the documentation:
/**
* Select the given [Datum]s.
*
* @param data A [Collection] of [Datum] to highlight on screen.
* @param selectionMarkIndexes A list of mark indexes used to restrict selection only for these marks
* (default to emptyList).
*/
@Suppress("INAPPLICABLE_JVM_NAME")
@JvmName("selectData")
public fun select(data: Collection<Datum<DOMAIN>>)
Here you refer to a selectionMarkIndexes parameter that actually does not exist.