iOS DrawEvery changes on rotate

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
toolbox
Newbie
Newbie
Posts: 12
Joined: Fri Mar 23, 2012 12:00 am

iOS DrawEvery changes on rotate

Post by toolbox » Thu Apr 26, 2012 4:09 pm

Hi, I have a chart, with days along the X Axis. In the constructor, I am setting the chart.Axes.Bottom.Grid.DrawEvery = 2 so that it displays every two days.

This works perfectly in portrait mode, but as soon as I switch to landscape, the X Axis is all messed up, and no longer following the Every 2 Days convention.

Is there something that needs to be done in order to guarantee that I am always displaying labels (and the grid) every 2 days, regardless of orientation?

Thanks

toolbox
Newbie
Newbie
Posts: 12
Joined: Fri Mar 23, 2012 12:00 am

Re: iOS DrawEvery changes on rotate

Post by toolbox » Fri Apr 27, 2012 5:40 pm

It looks as if the labels on the X Axis are not getting cleared on rotate, before the new axis labels are re-drawn. I've attached images to demonstrate this...

Any thoughts?
iOS Simulator Screen shot 2012-04-27 12.41.47 PM.png
iOS Simulator Screen shot 2012-04-27 12.41.47 PM.png (121.81 KiB) Viewed 15614 times
iOS Simulator Screen shot 2012-04-27 12.39.29 PM.png
iOS Simulator Screen shot 2012-04-27 12.39.29 PM.png (157.97 KiB) Viewed 15612 times

Yeray
Site Admin
Site Admin
Posts: 9612
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: iOS DrawEvery changes on rotate

Post by Yeray » Mon Apr 30, 2012 12:11 pm

Hi,

Have you set the bottom axis interval to two days?

Code: Select all

tChart1.Axes.Bottom.Increment = Utils.GetDateTimeStep(DateTimeSteps.TwoDays);
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

toolbox
Newbie
Newbie
Posts: 12
Joined: Fri Mar 23, 2012 12:00 am

Re: iOS DrawEvery changes on rotate

Post by toolbox » Mon Apr 30, 2012 1:40 pm

Yes, I have done the increment. It works perfectly for Portrait, but Landscape doesn't seem to clear out the labels before drawing the new ones....

toolbox
Newbie
Newbie
Posts: 12
Joined: Fri Mar 23, 2012 12:00 am

Re: iOS DrawEvery changes on rotate

Post by toolbox » Wed May 02, 2012 8:24 pm

Does anybody have any suggestions on how to fix this?

Yeray
Site Admin
Site Admin
Posts: 9612
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: iOS DrawEvery changes on rotate

Post by Yeray » Thu May 03, 2012 12:07 pm

Hi,

We've tried to reproduce the problem here by a single View or Utility application and it worked fine. Here is the code we used:

Code: Select all

        Steema.TeeChart.TChart Chart1;
        
        public MainViewController () : base ("MainViewController", null)
        {
            // Custom initialization
        }
        
        public override void ViewDidLoad ()
        {
            base.ViewDidLoad ();
            
            // Perform any additional setup after loading the view, typically from a nib.
            
            // Create the Chart
            Chart1 = new TChart();
            
            // Assign a Rect frame
            System.Drawing.RectangleF r = new System.Drawing.RectangleF(0,80,this.View.Bounds.Width,this.View.Bounds.Height-80);                        
            Chart1.Frame = r;
            
            Steema.TeeChart.Styles.Area area1 = new Steema.TeeChart.Styles.Area(Chart1.Chart);
            area1.FillSampleValues(10);
            area1.XValues.DateTime = true;
            Chart1.Axes.Bottom.Increment = Utils.GetDateTimeStep(DateTimeSteps.TwoDays);
            
            
            // Adds the Chart view to the Root view
            this.View.AddSubview(Chart1);
        }

        public override void DidRotate(UIInterfaceOrientation fromInterfaceOrientation)
        {
            // Refresh Chart rotating the device
            Chart1.RemoveFromSuperview();
            Chart1.Frame = new System.Drawing.RectangleF(0,0,View.Bounds.Width,View.Bounds.Height);
            View.AddSubview(Chart1);            
            Chart1.DoInvalidate();            
        }
        
        public override bool ShouldAutorotateToInterfaceOrientation (UIInterfaceOrientation toInterfaceOrientation)
        {
            // Return true for supported orientations
            return true;
        }
Would you be so kind to test if it's working fine for you? In the case you still having problems please send us the code you are using in order to be able to reproduce it here.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

toolbox
Newbie
Newbie
Posts: 12
Joined: Fri Mar 23, 2012 12:00 am

Re: iOS DrawEvery changes on rotate

Post by toolbox » Thu May 03, 2012 1:29 pm

The code posted unfortunately didn't work... I have my chart inside a UIView, and the code is attached to this post

Code: Select all

using System;
using MonoTouch.UIKit;
using System.Drawing;
using Steema.TeeChart;
using Steema.TeeChart.Styles;
using System.Linq;

    public class Report
    {
        public Report()
        {
        }

        public List<ReportItem> Items { get; set; }
    }
    
    public class ReportItem
    {
        public ReportItem()
        {
        }

        public DateTime Date { get; set; }

        public decimal Value { get; set; }
    }
	public class ReportView : UIView
	{
		private TChart _chart;
		private Area _valueLine;
		
		public Report Report { get; set; }
		
		public ReportView (RectangleF frame) : base(frame)
		{
			_chart = new TChart();
			
              _chart.Panel.Color = UIColor.White.CGColor;
			_chart.Panel.Gradient.Visible = false;	
			_chart.Header.Text = String.Empty;
			_chart.Aspect.View3D = false;
			_chart.Legend.Visible = true;
			_chart.Legend.LegendStyle = LegendStyles.Series;
			_chart.Legend.AutoSize = true;
			_chart.Legend.Alignment = LegendAlignments.Top;
			_chart.Legend.Shadow.Visible = false;
			_chart.Legend.ResizeChart = true;
			_chart.Legend.BevelWidth = 0;
			_chart.Legend.Pen.Visible = false;
			_chart.Legend.VertMargin = 5;
			
			_chart.Legend.CustomPosition = true;
			_chart.Legend.Top = 18;
			_chart.Legend.Left = 300;
			
			_chart.Axes.Left.Grid.Visible = true;
			//_chart.Axes.Left.Grid.DrawEvery = 3;
			_chart.Axes.Left.MinorTicks.Visible = false;
			_chart.Axes.Bottom.MinimumOffset = 3;
			_chart.Axes.Bottom.Grid.Visible = false;
			//_chart.Axes.Bottom.Grid.DrawEvery = 2;
			
			_chart.Axes.Bottom.Increment = Steema.TeeChart.Utils.GetDateTimeStep(Steema.TeeChart.DateTimeSteps.TwoDays);
			
			_chart.Axes.Left.Labels.ValueFormat = "$0";			
			
			_chart.AutoresizingMask = UIViewAutoresizing.All;
			_chart.Aspect.ZoomScrollStyle = Steema.TeeChart.Drawing.Aspect.ZoomScrollStyles.Manual;
			_chart.Zoom.Allow = false;
			_chart.Panning.Allow = ScrollModes.None;
			_chart.ExclusiveTouch = false;
			_chart.MultipleTouchEnabled = false;
			_chart.UserInteractionEnabled = false;
			_chart.Axes.Bottom.TickOnLabelsOnly = true;
						
			_valueLine = new Area(_chart.Chart);
			
			_valueLine.Title = "Value";
			
			_valueLine.ShowInLegend = true;
			
			_valueLine.Color = UIColor.Green.CGColor;
			
			_valueLine.AreaLines.Color = UIColor.FromWhiteAlpha(1f, 0f).CGColor;
			
			_valueLine.LinePen.Color = UIColor.Green.CGColor;
			
			_valueLine.Transparency = 50;
			_valueLine.Active = true;
			
			_chart.Series.Add(_valueLine);
			_chart.AutoRepaint = true;
			AddSubview(_chart);
		}
		
		public void LoadReport()
		{
			if (Report != null)
			{
				_valueLine.Clear();				

				foreach (var item in Report.Items)
				{
					_valueLine.Add(item.Date, Convert.ToDouble(Math.Round (item.Value)));
					_valueLine.DateTimeFormat = "MMM";
					_valueLine.Labels.Add(item.Date.ToString("MMM d"));
				}
				
				_valueLine.Invalidate();
				_chart.SizeToFit();
			}
		}
		
		public override void LayoutSubviews ()
		{
			base.LayoutSubviews ();
			_chart.RemoveFromSuperview();
			_chart.Frame = new RectangleF(0, 0,Frame.Width, Frame.Height);
			AddSubview(_chart);
			_chart.Legend.Top = 18;
			_chart.Legend.Left = Convert.ToInt32(Frame.Width / 2) - 30;
			_chart.DoInvalidate();
		}
	}



toolbox
Newbie
Newbie
Posts: 12
Joined: Fri Mar 23, 2012 12:00 am

Re: iOS DrawEvery changes on rotate

Post by toolbox » Fri May 04, 2012 12:56 pm

Can anyone help me with this? This is a time sensitive issue and it needs to be resolved asap.

Pep
Site Admin
Site Admin
Posts: 3295
Joined: Fri Nov 14, 2003 5:00 am
Contact:

Re: iOS DrawEvery changes on rotate

Post by Pep » Mon May 07, 2012 9:24 am

Hello,

Sure, I've been doing some tests here. I did use a diferent application type, but should work in the same way. I noticed you are not using the DidRotate event method into the code you sent to us.
The problem seems to be related with a refresh os the Chart once the device orientation changes. Could you please try to add the DidRotate override method to your application in order to check if it helps ?

I also noticed that if the code application includes a the method you used (public override void LayoutSubviews ()) then the DidRotated method is never called. I think you could instead use the didRotate.
Please try to use the following code, and check it enter to the method once the device is rotated.

Code: Select all

		public override void DidRotate(UIInterfaceOrientation fromInterfaceOrientation) 
		{
			// Refresh Chart rotating the device
			_chart.RemoveFromSuperview();
			_chart.Frame = new System.Drawing.RectangleF(0,0,View.Bounds.Size.Width,View.Bounds.Size.Height);
			View.AddSubview(_chart);			
			_chart.DoInvalidate();					
		}
In the case you continue with problems let me know and I'll try to find a solution asasp.

toolbox
Newbie
Newbie
Posts: 12
Joined: Fri Mar 23, 2012 12:00 am

Re: iOS DrawEvery changes on rotate

Post by toolbox » Mon May 07, 2012 1:06 pm

Hi, there is no method DidRotate within UIView. UIViewController contains a DidRotate method. LayoutSubviews should be called on every rotation of the device. I have debugged this and it is the case.

Yeray
Site Admin
Site Admin
Posts: 9612
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: iOS DrawEvery changes on rotate

Post by Yeray » Thu May 10, 2012 10:09 am

Hi,

You could try putting the code Pep suggested above in this event that seems to be called with every rotation.
If you still have problems with it, please try to arrange a simple example project we can run as-is to reproduce the problem here.
Thanks in advance.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

toolbox
Newbie
Newbie
Posts: 12
Joined: Fri Mar 23, 2012 12:00 am

Re: iOS DrawEvery changes on rotate

Post by toolbox » Mon May 14, 2012 12:51 pm

I have a sample solution at the following url for download: https://www.dropbox.com/s/5name91arvh92 ... rtTest.zip . The solution is too large to attach to this post.

I want the dates to display every two days... in portrait, it's perfect, in landscape, it's not correct at all. Please take a look and let me know ASAP as this is a time sensitive project.

Thanks

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: iOS DrawEvery changes on rotate

Post by Sandra » Tue May 15, 2012 11:09 am

Hello ToolBox,

We have modified your code and we have added the suggestion I have made you in this thread and now works fine for me. Can you please tell us, if my changes solve your problem and the project works as you expect?
TChartTest.zip
(2.68 MiB) Downloaded 550 times
I hope will helps.
Best Regards,
Sandra Pazos / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply