Hi,
version for VS2003 has Steema.TeeChart.Styles.PaletteList
version for 2005 doesn't
What would I use instead?
Thanks,
Natalia
Steema.TeeChart.Styles.PaletteList class in VS2005 version?
-
- Site Admin
- Posts: 1349
- Joined: Thu Jan 01, 1970 12:00 am
- Location: Riudellots de la Selva, Catalonia
- Contact:
Hello!
PaletteList is only used once in the TeeChart source, and that is as the type of the Steema.TeeChart.Styles.Custom3DPalette.Palette property. When the private field of this property is instantiated, the source code looks like this:version for VS2003 has Steema.TeeChart.Styles.PaletteList
version for 2005 doesn't
What would I use instead?
Code: Select all
#if VS2005
private List<GridPalette> palette = new List<GridPalette>();
#else
private PaletteList palette=new PaletteList();
#endif
Thank you!
Christopher Ireland (Steema crew)
Please be aware of the newsgroup archives:
http://www.teechart.net/support/search.php
http://groups.google.com
http://codenewsfast.com/
Christopher Ireland (Steema crew)
Please be aware of the newsgroup archives:
http://www.teechart.net/support/search.php
http://groups.google.com
http://codenewsfast.com/