Silverlight Teechart - Multiple series with different type

TeeChart Beta versions
Post Reply
Priya Hatipkar
Newbie
Newbie
Posts: 46
Joined: Wed Jan 28, 2009 12:00 am

Silverlight Teechart - Multiple series with different type

Post by Priya Hatipkar » Fri Feb 27, 2009 6:10 am

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

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Mon Mar 02, 2009 9:55 am

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.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Priya Hatipkar
Newbie
Newbie
Posts: 46
Joined: Wed Jan 28, 2009 12:00 am

Post by Priya Hatipkar » Fri Mar 06, 2009 2:08 pm

This works fine.
It's my mistake. The line series was hidden behind Bar series.\

Regards,
Priya

Post Reply