forked from syncfusion/xamarin-demos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CustomizationRangeNavigator.cs
256 lines (214 loc) · 10.9 KB
/
CustomizationRangeNavigator.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
#region Copyright Syncfusion Inc. 2001 - 2019
// Copyright Syncfusion Inc. 2001 - 2019. 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 Syncfusion.SfChart.iOS;
using System.Collections.ObjectModel;
#if __UNIFIED__
using Foundation;
using UIKit;
using CoreGraphics;
#else
using MonoTouch.Foundation;
using MonoTouch.UIKit;
using MonoTouch.CoreGraphics;
using nint = System.Int32;
using nuint = System.Int32;
using nfloat = System.Single;
using CGRect = System.Drawing.RectangleF;
using CGPoint = System.Drawing.PointF;
#endif
namespace SampleBrowser
{
public class CustomizationRangeNavigator : SampleView
{
UILabel lblTitle;
UILabel lblValue;
SFDateTimeRangeNavigator rangeNavigator;
public CustomizationRangeNavigator()
{
rangeNavigator = new SFDateTimeRangeNavigator();
lblTitle = new UILabel();
lblTitle.TextAlignment = UITextAlignment.Center;
lblTitle.Font = UIFont.FromName("Helvetica", 14f);
lblValue = new UILabel();
lblValue.TextAlignment = UITextAlignment.Center;
lblValue.Font = UIFont.FromName("Helvetica", 14f);
rangeNavigator.ShowTooltip = false;
rangeNavigator.Delegate = new CustomizationDelegate(lblTitle, lblValue);
DateTime minDate = new DateTime(2015, 1, 1, 0, 0, 0);
DateTime maxDate = new DateTime(2015, 12, 1, 0, 0, 0);
DateTime startDate = new DateTime(2015, 6, 15, 0, 0, 0);
DateTime endDate = new DateTime(2015, 9, 15, 0, 0, 0);
rangeNavigator.Minimum = DateTimeToNSDate(minDate);
rangeNavigator.Maximum = DateTimeToNSDate(maxDate);
rangeNavigator.ViewRangeStart = DateTimeToNSDate(startDate);
rangeNavigator.ViewRangeEnd = DateTimeToNSDate(endDate);
rangeNavigator.EdgeInsets = new UIEdgeInsets(0, 0, 20, 0);
rangeNavigator.Content.Layer.BorderWidth = 1.0f;
rangeNavigator.Content.Layer.BorderColor = UIColor.LightGray.CGColor;
rangeNavigator.LeftThumbStyle.LineWidth = 3.0f;
rangeNavigator.LeftThumbStyle.Width = 28.0f;
rangeNavigator.LeftThumbStyle.LineColor = UIColor.FromRGBA(95.0f / 255.0f, 104.0f / 255.0f, 114.0f / 255.0f, 1.0f);
rangeNavigator.RightThumbStyle.LineWidth = 3.0f;
rangeNavigator.RightThumbStyle.Width = 28.0f;
rangeNavigator.RightThumbStyle.LineColor = UIColor.FromRGBA(95.0f / 255.0f, 104.0f / 255.0f, 114.0f / 255.0f, 1.0f);
rangeNavigator.MinorScaleStyle.IsVisible = false;
rangeNavigator.MinorScaleStyle.ShowGridLines = false;
rangeNavigator.MajorScaleStyle.LabelTextColor = UIColor.FromRGBA(95.0f / 255.0f, 104.0f / 255.0f, 114.0f / 255.0f, 1.0f);
rangeNavigator.MajorScaleStyle.SelectedLabelTextColor = UIColor.FromRGBA(28.0f / 255.0f, 178.0f / 255.0f, 213.0f / 255.0f, 1.0f);
ChartViewModel dataModel = new ChartViewModel();
SFSplineAreaSeries series = new SFSplineAreaSeries();
series.Alpha = 0.6f;
series.BorderColor = UIColor.FromRGBA (28.0f/255.0f, 178.0f/255.0f, 213.0f/255.0f, 1.0f);
series.Color = UIColor.FromRGBA (124.0f/255.0f, 230.0f/255.0f, 199.0f/255.0f, 1.0f);
series.ItemsSource = dataModel.DateTimeRangeData;
series.XBindingPath = "XValue";
series.YBindingPath = "YValue";
((SFChart)rangeNavigator.Content).Series.Add(series);
ThumbLayer thumbLayer = new ThumbLayer();
rangeNavigator.ThumbLayer = thumbLayer;
this.AddSubview(lblTitle);
this.AddSubview(lblValue);
this.AddSubview(rangeNavigator);
NSDateFormatter resultFormatter = new NSDateFormatter();
resultFormatter.DateFormat = "MMM dd";
lblTitle.Text = string.Format(@"Data usage cycle: {0} - {1}",
resultFormatter.ToString(rangeNavigator.ViewRangeStart),
resultFormatter.ToString(rangeNavigator.ViewRangeEnd));
lblValue.Text = string.Format(@"Data usage - 101 MB");
//this.control = this;
}
public static NSDate DateTimeToNSDate(DateTime date)
{
DateTime reference = TimeZone.CurrentTimeZone.ToLocalTime(
new DateTime(2001, 1, 1, 0, 0, 0));
return NSDate.FromTimeIntervalSinceReferenceDate((date - reference).TotalSeconds);
}
public override void LayoutSubviews()
{
foreach (var view in this.Subviews)
{
if (view == lblTitle)
lblTitle.Frame = new CGRect(Frame.X, 10, Frame.Width, 35);
else if (view == rangeNavigator)
rangeNavigator.Frame = new CGRect(Frame.X, 55, Frame.Width, 180);
else if (view == lblValue)
lblValue.Frame = new CGRect(Frame.X, 230, Frame.Width, 35);
else
view.Frame = Frame;
}
base.LayoutSubviews();
}
}
public class CustomizationDelegate : SFRangeNavigatorDelegate
{
UILabel lblTitle;
UILabel lblValue;
ChartViewModel dataModel;
ObservableCollection<ChartDataModel> dataPoints;
public CustomizationDelegate(UILabel _lblTitle, UILabel _lblValue)
{
lblTitle = _lblTitle;
lblValue = _lblValue;
dataModel = new ChartViewModel();
dataPoints = new ObservableCollection<ChartDataModel>();
dataPoints = dataModel.DateTimeRangeData;
}
public override void RangeChanged(SFDateTimeRangeNavigator rangeNavigator, NSDate startDate, NSDate endDate)
{
NSDateFormatter resultFormatter = new NSDateFormatter();
resultFormatter.DateFormat = "MMM dd";
lblTitle.Text = string.Format(@"Data usage cycle: {0} - {1}",
resultFormatter.ToString(startDate),
resultFormatter.ToString(endDate));
NSDateFormatter dateFormatter = new NSDateFormatter();
dateFormatter.DateFormat = @"MMM dd";
ChartDataModel data = new ChartDataModel();
NSDate date;
NSNumber value;
int y = 0;
for (int i = 0; i < dataPoints.Count; i++)
{
data = dataPoints[i];
date = (CustomizationRangeNavigator.DateTimeToNSDate((DateTime)data.XValue));
if ((startDate.Compare(date) == NSComparisonResult.Ascending || startDate.Compare(date) == NSComparisonResult.Same) &&
(date.Compare(endDate) == NSComparisonResult.Ascending || date.Compare(endDate) == NSComparisonResult.Same))
{
value = (NSNumber)data.YValue;
y += (int)value;
}
}
lblValue.Text = string.Format(@"Data usage - {0} MB", y);
}
}
public class ThumbLayer : SFRangeNavigatorThumbLayer
{
public override void DrawLeftThumbInContext(CGContext ctx, CGPoint startPoint, CGPoint endPoint)
{
CGRect rect = new CGRect(startPoint.X - 14, endPoint.Y - 14, 14, 14);
DrawTriangleInContext(ctx, rect, 1, false);
rect = new CGRect(startPoint.X - 14.5f, (float)endPoint.Y + 0.5f, 15.5f, 12f);
DrawRectShapeInContext(ctx, rect);
// Sets the region to be captured for dragging the left thumb.
// When you are changing the default position or size of the thumb by overriding drawLeftThumbInContext method,
// this method should be called mandatorily to set the region a user can touch to drag the thumb.
this.SetLeftThumbFrame(new CGRect(startPoint.X - 14, startPoint.Y, 22, endPoint.Y + 16));
}
public override void DrawRightThumbInContext(CGContext ctx, CGPoint startPoint, CGPoint endPoint)
{
CGRect rect = new CGRect(startPoint.X, endPoint.Y - 14, 14, 14);
DrawTriangleInContext(ctx, rect, 1, true);
rect = new CGRect(startPoint.X - 1f, endPoint.Y + 0.5f, 15.5f, 12f);
DrawRectShapeInContext(ctx, rect);
// Sets the region to be captured for dragging the right thumb.
// When you are changing the default position or size of the thumb by overriding drawRightThumbInContext method,
// this method should be called mandatorily to set the region a user can touch to drag the thumb.
this.SetRightThumbFrame(new CGRect(startPoint.X, startPoint.Y - 16, 22, endPoint.Y + 16));
}
//utility for drawing triangle shape
public void DrawTriangleInContext(CGContext ctx, CGRect rect, float BorderWidth, bool isLeft)
{
UIColor color = UIColor.FromRGBA(95.0f / 255.0f, 104.0f / 255.0f, 114.0f / 255.0f, 1.0f);
ctx.SetLineWidth(BorderWidth);
ctx.SetStrokeColor(color.CGColor);
ctx.SetFillColor(color.CGColor);
ctx.SaveState();
if (isLeft)
ctx.MoveTo(rect.GetMinX(), rect.GetMinY());
else
ctx.MoveTo(rect.GetMaxX(), rect.GetMinY());
ctx.AddLineToPoint(rect.GetMinX(), rect.GetMaxY());
ctx.AddLineToPoint(rect.GetMaxX(), rect.GetMaxY());
ctx.ClosePath();
ctx.DrawPath(CGPathDrawingMode.FillStroke);
ctx.RestoreState();
}
//utility for drawing rectangle shape
public void DrawRectShapeInContext(CGContext ctx, CGRect rect)
{
ctx.SetFillColor(UIColor.FromRGBA(95.0f / 255.0f, 104.0f / 255.0f, 114.0f / 255.0f, 1.0f).CGColor);
ctx.SetStrokeColor(UIColor.FromRGBA(95.0f / 255.0f, 104.0f / 255.0f, 114.0f / 255.0f, 1.0f).CGColor);
ctx.StrokeRect(rect);
ctx.FillRect(rect);
// Add rounded rect over plain rect with 4 pixel below the origin y, so that it will visible only the bottom rounded corners
CGRect cornerRect = new CGRect(rect.X, rect.Y + 4, rect.Width, rect.Height);
nfloat radius = 4;
nfloat minx = cornerRect.GetMinX(), midx = cornerRect.GetMidX(), maxx = cornerRect.GetMaxX();
nfloat miny = cornerRect.GetMinY(), midy = cornerRect.GetMidY(), maxy = cornerRect.GetMaxY();
ctx.SaveState();
ctx.MoveTo(minx, miny);
ctx.AddArcToPoint(minx, miny, midx, miny, radius);
ctx.AddArcToPoint(maxx, miny, maxx, midy, radius);
ctx.AddArcToPoint(maxx, maxy, midx, maxy, radius);
ctx.AddArcToPoint(minx, maxy, minx, midy, radius);
ctx.ClosePath();
ctx.DrawPath(CGPathDrawingMode.FillStroke);
ctx.RestoreState();
}
}
}