SfChart.Legend = new ChartLegend()
{
ItemTemplate = new DataTemplate(() => new StackLayout() { Orientation = StackOrientation.Horizontal , Children = { new Xamarin.Forms.Label() { Text = "Hello" } , new Xamarin.Forms.Label() { Text = "World" } } }),
DockPosition = LegendPlacement.Left
};
if I remove DockPosition = LegendPlacement.Left its work so how can i resolve this issue