Beispiel #1
0
        private void InitView()
        {
            ClipsToBounds = true;
            BackgroundColor = UIColor.White;

            barChart = new BarChartView ();
            pieChart = new DonutChartView ();

            _containerView = new UIView ();
            _containerView.Add (barChart);
            _containerView.Add (pieChart);
            AddSubview (_containerView);

            IsClean = true;
            panGesture = CreatePanGesture ();
            _containerView.AddGestureRecognizer (panGesture);
            _position = ChartPosition.Top;
        }
 public ProjectListSource (DonutChartView pieChart)
 {
     _owner = pieChart;
     LastSelectedIndex = -1;
 }
Beispiel #3
0
 public ProjectListSource(DonutChartView pieChart)
 {
     _owner            = pieChart;
     LastSelectedIndex = -1;
 }