Page 1 of 1
Regarding issue on clicking on legends of line series
Posted: Thu Aug 23, 2018 7:18 am
by 9526439
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 (17.54 KiB) Viewed 18738 times
Please provide a solution.
Thanks
Amol
Re: Regarding issue on clicking on legends of line series
Posted: Thu Aug 23, 2018 7:19 am
by 9526439
- 3.png (13.5 KiB) Viewed 18736 times
The attachment 3.png is no longer available
Re: Regarding issue on clicking on legends of line series
Posted: Mon Aug 27, 2018 8:36 am
by Christopher
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)
{
}
Re: Regarding issue on clicking on legends of line series
Posted: Tue Aug 28, 2018 1:18 pm
by 9526439
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
Re: Regarding issue on clicking on legends of line series
Posted: Wed Sep 05, 2018 2:13 pm
by 9526439
Can you please help me in this.
Thanks
Amol