Page 1 of 1
Steema.TeeChart.Styles.PaletteList class in VS2005 version?
Posted: Wed Jul 11, 2007 9:39 am
by 8119873
Hi,
version for VS2003 has Steema.TeeChart.Styles.PaletteList
version for 2005 doesn't
What would I use instead?
Thanks,
Natalia
Posted: Thu Jul 12, 2007 7:45 am
by Chris
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