Hi,
I want to use a custom tooltip for my chart, but having problems with it.
I'm able to create a tooltiptemplate and set it on my columnserie. I can access values of my model like this:
var label1 = new Label();
label1.SetBinding(Label.TextProperty, new Binding("XXX"));
But the problem is now that I don't want certain values of my model on a control, but I want to store it in a variable to pass it to some other function when tapping the tooltip.
When looking at the BindingContext in the tooltiptemplate I'm getting my viewmodel back instead of the data model.
So, how can I retrieve values of my data model and place them in a variable?