Page 1 of 1

Silverlight Teechart - Multiple series with different type

Posted: Fri Feb 27, 2009 6:10 am
by 13051589
Silverlight Teechart - Multiple series with different types do not get plotted.
In my case, Chart has Line series and Bar series in it. and only Bar series is getting plotted.

Regards,
Priya

Posted: Mon Mar 02, 2009 9:55 am
by narcis
Hi Priya,

Code below works fine for me here using code below in the SilverlightDemo. Can you please modify the code snippet below or send us a simple example project we can run "as-is" to reproduce the problem here? You can post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.

Code: Select all

    private void InitializeChart()
    {
			Steema.TeeChart.Silverlight.Styles.Bar bar1 = new Steema.TeeChart.Silverlight.Styles.Bar(tChart1.Chart);
			bar1.FillSampleValues();

			Steema.TeeChart.Silverlight.Styles.Line line1 = new Steema.TeeChart.Silverlight.Styles.Line(tChart1.Chart);
			line1.FillSampleValues();
    }
Thanks in advance.

Posted: Fri Mar 06, 2009 2:08 pm
by 13051589
This works fine.
It's my mistake. The line series was hidden behind Bar series.\

Regards,
Priya