Steema.TeeChart.Styles.PaletteList class in VS2005 version?

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Natalia
Newbie
Newbie
Posts: 7
Joined: Tue Apr 08, 2003 4:00 am

Steema.TeeChart.Styles.PaletteList class in VS2005 version?

Post by Natalia » Wed Jul 11, 2007 9:39 am

Hi,
version for VS2003 has Steema.TeeChart.Styles.PaletteList
version for 2005 doesn't
What would I use instead?

Thanks,

Natalia

Christopher
Site Admin
Site Admin
Posts: 1349
Joined: Thu Jan 01, 1970 12:00 am
Location: Riudellots de la Selva, Catalonia
Contact:

Post by Christopher » Thu Jul 12, 2007 7:45 am

Hello!
version for VS2003 has Steema.TeeChart.Styles.PaletteList
version for 2005 doesn't
What would I use instead?
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:

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/

Post Reply