Page 1 of 1

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

Posted: Thu Aug 31, 2017 11:42 am
by 9526439
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 6846 times
Now i am showing this image with grid lines.
Untitled2.png
Untitled2.png (27.27 KiB) Viewed 6847 times
This issue is coming with us please provide some solution. we are doing chart refresh but it is happening.

Thanks

Plano Research

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

Posted: Mon Sep 04, 2017 8:32 am
by Christopher
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 6840 times
and
sllauncher_2017-09-04_10-18-34.png
sllauncher_2017-09-04_10-18-34.png (42.42 KiB) Viewed 6842 times
would you please be so kind as to retouch the above example so I can reproduce your issue here?