-
Notifications
You must be signed in to change notification settings - Fork 201
/
Copy pathStackedDoughnut.cs
118 lines (103 loc) · 4.39 KB
/
StackedDoughnut.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#region Copyright Syncfusion® Inc. 2001-2025.
// Copyright Syncfusion® Inc. 2001-2025. All rights reserved.
// Use of this code is subject to the terms of our license.
// A copy of the current license can be obtained at any time by e-mailing
// [email protected]. Any infringement will be prosecuted under
// applicable laws.
#endregion
using System;
using System.Collections.Generic;
using CoreGraphics;
using Foundation;
using Syncfusion.SfChart.iOS;
using UIKit;
namespace SampleBrowser
{
public class StackedDoughnut : SampleView
{
void Chart_LegendItemCreated(object sender, ChartLegendItemCreatedEventArgs e)
{
ChartDataModel dataModel = e.LegendItem.DataPoint as ChartDataModel;
float heightAndWidth = Utility.IsIPad ? 80 : 60;
UIView legendView = new UIView();
legendView.Frame = new CGRect(0, 0, 130, heightAndWidth - 10);
SFChart legendChart = new SFChart();
legendChart.Frame = new CGRect(0, 0, heightAndWidth, heightAndWidth);
UIImageView imageView = new UIImageView();
imageView.Image = UIImage.FromBundle(dataModel.Image);
imageView.Frame = new CGRect(legendChart.Frame.X / 2, legendChart.Frame.Y / 2, Utility.IsIPad ? 30 : 20, Utility.IsIPad ? 30 : 20);
SFDoughnutSeries series = new SFDoughnutSeries();
series.IsStackedDoughnut = true;
series.Color = e.LegendItem.IconColor;
series.ItemsSource = new List<ChartDataModel>() { dataModel };
series.XBindingPath = "XValue";
series.YBindingPath = "YValue";
series.StartAngle = -90;
series.EndAngle = 270;
series.MaximumValue = 100;
series.Spacing = 0.2;
series.DoughnutCoefficient = 0.8;
series.CircularCoefficient = 1.0;
series.CapStyle = DoughnutCapStyle.BothCurve;
series.CenterView = imageView;
legendChart.Series.Add(series);
legendView.AddSubview(legendChart);
UILabel yLabel = new UILabel();
yLabel.Frame = new CGRect(Utility.IsIPad ? 77 : 57, Utility.IsIPad ? 20 : 10, 80, 18);
yLabel.TextColor = e.LegendItem.IconColor;
yLabel.Font = UIFont.FromName("Helvetica", 14f);
yLabel.Text = dataModel.YValue.ToString() + "%";
UILabel xLabel = new UILabel();
xLabel.Frame = new CGRect(Utility.IsIPad ? 77 : 57, Utility.IsIPad ? 40 : 30, 80, 18);
xLabel.TextColor = UIColor.Black;
xLabel.Font = UIFont.FromName("Helvetica", 12f);
xLabel.Text = dataModel.XValue.ToString();
legendView.AddSubview(yLabel);
legendView.AddSubview(xLabel);
e.LegendItem.View = legendView;
}
public StackedDoughnut()
{
ChartViewModel viewModel = new ChartViewModel();
SFChart chart = new SFChart();
chart.Title.Text = new NSString("Percentage of Loan Closure");
chart.Title.Font = UIFont.SystemFontOfSize(15);
chart.Legend.Visible = true;
chart.Legend.DockPosition = SFChartLegendPosition.Bottom;
chart.Legend.OverflowMode = ChartLegendOverflowMode.Wrap;
chart.LegendItemCreated += Chart_LegendItemCreated; ;
UIImageView imageView = new UIImageView();
imageView.Image = UIImage.FromBundle("Images/Person.png");
float heightAndWidth = Utility.IsIPad ? 250 : 80;
imageView.Frame = new CGRect(chart.Frame.X / 2, chart.Frame.Y / 2, heightAndWidth, heightAndWidth);
SFDoughnutSeries doughnutSeries = new SFDoughnutSeries();
doughnutSeries.IsStackedDoughnut = true;
doughnutSeries.ColorModel.Palette = SFChartColorPalette.Custom;
doughnutSeries.ColorModel.CustomColors = NSArray.FromObjects(UIColor.FromRGBA(0.28f, 0.73f, 0.62f, 1.0f),
UIColor.FromRGBA(0.90f, 0.53f, 0.44f, 1.0f),
UIColor.FromRGBA(0.59f, 0.53f, 0.79f, 1.0f),
UIColor.FromRGBA(0.90f, 0.40f, 0.56f, 1.0f));
doughnutSeries.ItemsSource = viewModel.StackedDoughnutData;
doughnutSeries.XBindingPath = "XValue";
doughnutSeries.YBindingPath = "YValue";
doughnutSeries.StartAngle = -90;
doughnutSeries.EndAngle = 270;
doughnutSeries.MaximumValue = 100;
doughnutSeries.Spacing = 0.2;
doughnutSeries.DoughnutCoefficient = 0.6;
doughnutSeries.CircularCoefficient = 1;
doughnutSeries.CapStyle = DoughnutCapStyle.BothCurve;
doughnutSeries.CenterView = imageView;
chart.Series.Add(doughnutSeries);
this.AddSubview(chart);
}
public override void LayoutSubviews()
{
foreach (var view in this.Subviews)
{
view.Frame = Bounds;
}
base.LayoutSubviews();
}
}
}