Hello Pierre,
We have a requirement to display icons in the tooltip.
Currently, we are using RichTextBuilder for tooltips.
tooltipBuilder = ttb@{ datum, ttp, title, text, drawingZone ->
RichTextBuilder {
text("Key", bold = true)
text("value", bold = false)
newLine()
drawingZone.sampleTag(ttp!!.zone.center, genericSampleTagIcon(), size, 20.0, 20.0)
}
}
}
}
How can I add icons to this multi-line tooltip? I see we have drawingZone in lamda,
can we use that? I tried but it does not display an icon.
Please let me know how to add icons in the multiLine Tooltips.
In the offline chart, we have something like:
Please let me know.