I have created a SfChart in my code behind. I am getting no error but the chart doesn't display on the page. I think it may be a problem with my Xaml but I'm not sure. I have tried following other examples, but to no avail. My problem is that everything builds and deploys and stepping through with the debugger I can see the different properties getting the data etc. Any help on this would be great.
<StackLayout VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand">
<Grid x:Name="ChartGrid">
<syncfusion:SfChart>
</syncfusion:SfChart>
</Grid>
</StackLayout>
ChartGrid.BindingContext = theViewModel;
chart.PrimaryAxis = new DateTimeAxis();
chart.PrimaryAxis.Title.Text = "Date";
chart.Legend = new ChartLegend();
chart.Legend.DockPosition = LegendPlacement.Top;
chart.Legend.Title.Text = "Test";
chart.Legend.BindingContext = testnames;
chart.PrimaryAxis = new CategoryAxis() { Interval = 2, LabelPlacement = LabelPlacement.BetweenTicks };
chart.SecondaryAxis = new NumericalAxis() { Minimum = 0, Maximum = 100, Interval = 5 };
chart.Title.Text = "Player test scores";
chart.Series.Add(new ColumnSeries()
{
ItemsSource = playertestdata,
XBindingPath = dates.ToString(),
YBindingPath = testscores.ToString()
});
ChartGrid.Children.Add(chart);