I can't seem to get the title or legend of an SFChart to appear.
I've ensured to enable them in my code:
SFChart chart = new SFChart();
chart.Title.Text = new NSString(title);
chart.Title.TextAlignment = UITextAlignment.Center;
chart.Title.BorderColor = UIColor.Black;
chart.Title.TextColor = UIColor.Black;
chart.Legend.Visible = true;
ChartDoughnutDataSource dataModel = new ChartDoughnutDataSource(dataPoints);
chart.DataSource = dataModel as SFChartDataSource;
this.Control = chart;
But I can't get them to appear :(