|
series1.DataMarker = new ChartDataMarker()
{
LabelTemplate = new DataTemplate(() =>
{
var label = new Label()
{
};
label.SetBinding(Label.TextProperty, "XValue");
return label;
}),
};
|
Hi Javier,
Could you please confirm us whether the binding to any
property from Model class is working fine in your end?
|
label.SetBinding(Label.TextProperty, "YValue2", BindingMode.Default,
tooltipConvert); |
Thanks,
Prabakaran R.
|
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
var data = value as Model;
return data?.XValue + " : " + data?.YValue2;
} |