Regarding issue on clicking on legends of line series

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

Regarding issue on clicking on legends of line series

Post by amol » Thu Aug 23, 2018 7:18 am

Hi Steema Team,

I am facing an issue in silverlight c#.
I have a plot with multiple line series but when i am clicking on its legends the line series are getting disappear.
And there is no way i found to get it back.
Please help me in this. See below snaps.
The attachment 1.png is no longer available
The attachment 2.png is no longer available
1.png
1.png (17.54 KiB) Viewed 14090 times
Please provide a solution.

Thanks
Amol

amol
Advanced
Posts: 231
Joined: Tue Mar 29, 2005 5:00 am

Re: Regarding issue on clicking on legends of line series

Post by amol » Thu Aug 23, 2018 7:19 am

3.png
3.png (13.5 KiB) Viewed 14088 times
The attachment 3.png is no longer available

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

Re: Regarding issue on clicking on legends of line series

Post by Christopher » Mon Aug 27, 2018 8:36 am

Hello,

as always, we are going to need some code with which to reproduce this issue here. The following code works fine when clicking on the legend.

Code: Select all

		public MainPage()
		{
			InitializeComponent();

			for (int i = 0; i < 3; i++)
			{
				tChart1.Series.Add(typeof(Steema.TeeChart.Silverlight.Styles.Line)).FillSampleValues();
			}

			tChart1.ClickLegend += TChart1_ClickLegend;
		}

		private void TChart1_ClickLegend(object sender, MouseEventArgs e)
		{
			
		}
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

amol
Advanced
Posts: 231
Joined: Tue Mar 29, 2005 5:00 am

Re: Regarding issue on clicking on legends of line series

Post by amol » Tue Aug 28, 2018 1:18 pm

Hi Team,

Thanks for the reply.
I would like to share that by this code some times application got hanged.
Can you provide a checkbox option in legends. So that by this user will check again on box to get the line back.

Thanks
Amol

amol
Advanced
Posts: 231
Joined: Tue Mar 29, 2005 5:00 am

Re: Regarding issue on clicking on legends of line series

Post by amol » Wed Sep 05, 2018 2:13 pm

Can you please help me in this.

Thanks
Amol

Post Reply