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
Correct me if I'm wrong, I may be missing something, but from what I see, it seems like
override fun removeSeries(seriesApi: SeriesApi, onSeriesDeleted: () -> Unit) {
if (seriesApi is ChartRuntimeObject) {
assert(seriesApi.getVersion() == getVersion()) {
"The object should be removed by the same ChartApi as it was created"
}
}
controller.callFunction(
REMOVE_SERIES,
mapOf(SERIES_UUID to seriesApi.uuid),
onSeriesDeleted
)
}
Correct me if I'm wrong, I may be missing something, but from what I see, it seems like
calls
in which case
callback as? (Any?) -> Unit
will cause thecallBridgeFunction
to be called withnull
callback
parameter.The text was updated successfully, but these errors were encountered: