Hello,
I have a project with using very old version of teechart. After upgrading teechart library to latest version (TeeChart for .NET Products) some types are missing.
For example: TowerStyles and Steema.TeeChart.Drawing.GL.TTeeOpenGL.
I am confusion because I see these types in documentation but they are missing in VS project.
Note: In old project included assembly name was TeeChart
After upgrading I see TeeChart.Business assembly name.
Thank you in advance.
Build error: The name 'TowerStyles' does not exist in the
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Build error: The name 'TowerStyles' does not exist in the
Hello,
please note that there are now two versions of TeeChart and therefore two different NuGet packages:
1. TeeChart.NET Pro Edition
2. TeeChart Business Edition
The Pro edition has the Tower Series in it:
The differences between the Pro and Business versions are listed in our feature
matrix.
The OpenGL assembly for TeeChart has been deprecated in both versions.
please note that there are now two versions of TeeChart and therefore two different NuGet packages:
1. TeeChart.NET Pro Edition
2. TeeChart Business Edition
The Pro edition has the Tower Series in it:
Code: Select all
private void InitializeChart()
{
tChart1.Aspect.View3D = true;
tChart1.Aspect.Orthogonal = false;
tChart1.Aspect.Chart3DPercent = 100;
tChart1.Aspect.Zoom = 80;
tChart1.Header.Text = Steema.TeeChart.Utils.Version;
var tower = new Steema.TeeChart.Styles.Tower(tChart1.Chart);
tower.FillSampleValues();
tower.TowerStyle = Steema.TeeChart.Styles.TowerStyles.Pyramid;
}
matrix.
The OpenGL assembly for TeeChart has been deprecated in both versions.
Best Regards,
Christopher Ireland / 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 |