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
Silverlight Teechart - Multiple series with different type
-
- Newbie
- Posts: 46
- Joined: Wed Jan 28, 2009 12:00 am
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
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.
Thanks in advance.
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();
}
Best Regards,
Narcís Calvet / 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 |
-
- Newbie
- Posts: 46
- Joined: Wed Jan 28, 2009 12:00 am