-
Notifications
You must be signed in to change notification settings - Fork 200
/
Copy pathTooltip.cs
132 lines (115 loc) · 4.21 KB
/
Tooltip.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
#region Copyright Syncfusion Inc. 2001 - 2015
// Copyright Syncfusion Inc. 2001 - 2015. 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;
#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 CGSize = System.Drawing.SizeF;
using CGRect = System.Drawing.RectangleF;
#endif
namespace SampleBrowser
{
public class Tooltip : SampleView
{
public Tooltip()
{
SFChart chart = new SFChart();
chart.Title.Text = new NSString("Wheat Production in Tons");
//Primary Axis
SFCategoryAxis primaryAxis = new SFCategoryAxis();
primaryAxis.PlotOffset = 10;
primaryAxis.ShowMajorGridLines = false;
primaryAxis.AxisLineStyle.LineWidth = new NSNumber(0.5);
primaryAxis.Interval = new NSNumber(2);
chart.PrimaryAxis = primaryAxis;
// Secondary Axis
SFNumericalAxis secondaryAxis = new SFNumericalAxis();
secondaryAxis.EdgeLabelsDrawingMode = SFChartAxisEdgeLabelsDrawingMode.Shift;
secondaryAxis.Maximum = new NSNumber(2.701);
secondaryAxis.Minimum = new NSNumber(1.5);
secondaryAxis.Interval = new NSNumber(0.2);
secondaryAxis.AxisLineStyle.LineWidth = new NSNumber(0);
secondaryAxis.LabelStyle.Font = UIFont.FromName("Helvetica", 12f);
secondaryAxis.Title.Font = UIFont.FromName("Helvetica", 15f);
secondaryAxis.MajorTickStyle.LineSize = 0;
secondaryAxis.MajorGridLineStyle.LineWidth = new NSNumber(0.25);
chart.SecondaryAxis = secondaryAxis;
ChartViewModel dataModel = new ChartViewModel();
SFSplineSeries series = new SFSplineSeries();
series.ItemsSource = dataModel.TooltipData;
series.XBindingPath = "XValue";
series.YBindingPath = "YValue";
series.EnableTooltip = true;
series.LineWidth = 2.5f;
series.DataMarker.ShowMarker = true;
series.DataMarker.MarkerType = SFChartDataMarkerType.Ellipse;
series.DataMarker.MarkerHeight = 5;
series.DataMarker.MarkerWidth = 5;
series.DataMarker.MarkerBorderColor = UIColor.Black;
series.DataMarker.MarkerColor = UIColor.FromRGBA(193.0f / 255.0f, 39.0f / 255.0f, 45.0f / 255.0f, 1.0f);
series.EnableAnimation = true;
chart.Series.Add(series);
chart.Delegate = new ChartTooltipDelegate();
SFChartTooltipBehavior behavior = new SFChartTooltipBehavior();
behavior.BackgroundColor = UIColor.FromRGBA(193.0f / 255.0f, 39.0f / 255.0f, 45.0f / 255.0f, 1.0f);
chart.AddChartBehavior(behavior);
this.AddSubview(chart);
}
public override void LayoutSubviews()
{
foreach (var view in this.Subviews)
{
view.Frame = Bounds;
}
base.LayoutSubviews();
}
}
public class ChartTooltipDelegate : SFChartDelegate
{
public override void WillShowTooltip(SFChart chart, SFChartTooltip tooltipView)
{
UIView customView = new UIView();
customView.Frame = new CGRect(0, 0, 80, 40);
UIImageView imageView = new UIImageView();
imageView.Frame = new CGRect(0, 0, 40, 40);
imageView.Image = UIImage.FromBundle("Images/grain.png");
UILabel xLabel = new UILabel();
xLabel.Frame = new CGRect(47, 0, 35, 18);
xLabel.TextColor = UIColor.Orange;
xLabel.Font = UIFont.FromName("Helvetica", 12f);
xLabel.Text = (tooltipView.DataPoint as ChartDataModel).XValue.ToString();
UILabel yLabel = new UILabel();
yLabel.Frame = new CGRect(47, 20, 40, 18);
yLabel.TextColor = UIColor.White;
yLabel.Font = UIFont.FromName("Helvetica", 12f);
yLabel.Text = tooltipView.Text +"M";
customView.AddSubview(imageView);
customView.AddSubview(xLabel);
customView.AddSubview(yLabel);
tooltipView.CustomView = customView;
}
public override NSString GetFormattedAxisLabel(SFChart chart, NSString label, NSObject value, SFAxis axis)
{
if (axis == chart.SecondaryAxis)
{
String formattedLabel = label + "M";
label = new NSString(formattedLabel);
return label;
}
return label;
}
}
}