Grid Line issue- Some time grid lines not showing for bottom

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
amol
Advanced
Posts: 231
Joined: Tue Mar 29, 2005 5:00 am

Grid Line issue- Some time grid lines not showing for bottom

Post by amol » Thu Aug 31, 2017 11:42 am

Hi steema support,
We are facing some time grid line missing issue for bottom axis. We are using t chart in silverlight application.
please see below image. Without bottom axis grid lines.
Untitled.png
Untitled.png (22.27 KiB) Viewed 6795 times
Now i am showing this image with grid lines.
Untitled2.png
Untitled2.png (27.27 KiB) Viewed 6796 times
This issue is coming with us please provide some solution. we are doing chart refresh but it is happening.

Thanks

Plano Research

Christopher
Guru
Posts: 1603
Joined: Fri Nov 15, 2002 12:00 am

Re: Grid Line issue- Some time grid lines not showing for bottom

Post by Christopher » Mon Sep 04, 2017 8:32 am

Hello!

I'm having a little difficulty reproducing this one here - if I use the following code in a Silverlight project:

Code: Select all

		public MainPage()
		{
			InitializeComponent();
			InitializeChart();
		}

		private void InitializeChart()
		{
			tChart1.Series.Add(typeof(Steema.TeeChart.Silverlight.Styles.Line)).FillSampleValues();
			tChart1.Axes.Bottom.Title.Text = "Bottom axis title";
		}

		private void button_Click(object sender, RoutedEventArgs e)
		{
			tChart1.Axes.Bottom.Grid.Visible = !tChart1.Axes.Bottom.Grid.Visible;
		}
This gives me the following:
sllauncher_2017-09-04_10-17-36.png
sllauncher_2017-09-04_10-17-36.png (27.78 KiB) Viewed 6789 times
and
sllauncher_2017-09-04_10-18-34.png
sllauncher_2017-09-04_10-18-34.png (42.42 KiB) Viewed 6791 times
would you please be so kind as to retouch the above example so I can reproduce your issue here?
Best Regards,
Christopher Ireland / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Instructions - How to post in this forum

Post Reply