Hi
Is it possible to ask a series what style it is e.g. point style or line style.
Is there an enum I can use for these styles types?
Thanks in advance
Lars Iversen
Ask for series style
-
- Newbie
- Posts: 61
- Joined: Wed Jun 22, 2005 4:00 am
- Location: cph
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Lars,
Yes, here is an example:
Yes, here is an example:
Code: Select all
private void button1_Click(object sender, System.EventArgs e)
{
Steema.TeeChart.Styles.Series s=tChart1[0];
if(s is Steema.TeeChart.Styles.Custom3DGrid)
(s as Steema.TeeChart.Styles.Custom3DGrid).IrregularGrid = false;
Steema.TeeChart.Styles.Series.ChangeType(ref s,typeof(Steema.TeeChart.Styles.Tower));
}
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 |