Closed rohitrmane closed 1 year ago
Hello @rohitrmane,
could you please share how are you adding data to the wordcloud
series?
wordcloud.data = ...
In the meantime you can try the following clickFunction
:
let clickFunction = HIFunction(closure: { context in
guard
let context = context,
let word = context.getProperty("this.name") as? String
else { return }
print("Word Printed : \(word)" )
}, properties: ["this.name"])
Closing due to inactivity
I have tried using below code but not getting clicked word from word cloud instead it give blank in name property