Rotate Labels in 3D Graph
Posted: Thu Aug 25, 2011 3:15 am
Hi,
Does the latest release have the ability to rotate text labels in the 3D Charts?
Does the latest release have the ability to rotate text labels in the 3D Charts?
Steema Software - Customer Support Forums
http://216.92.101.67/support/
Code: Select all
public Form1()
{
InitializeComponent();
InitializeChart();
}
Steema.TeeChart.Styles.Line line;
Steema.TeeChart.Tools.Annotation annotation;
Steema.TeeChart.Tools.Rotate rotate;
private void InitializeChart()
{
line = new Line(tChart1.Chart);
line.FillSampleValues();
rotate = new Steema.TeeChart.Tools.Rotate(tChart1.Chart);
//Open GL
Steema.TeeChart.Drawing.GL.TeeOpenGL openGL = new Steema.TeeChart.Drawing.GL.TeeOpenGL(tChart1.Chart);
openGL.Active = true;
openGL.ShadeQuality = true;
tChart1.Walls.Back.Visible = false;
tChart1.Axes.Bottom.Labels.Font.Size = 10;
tChart1.Axes.Left.Labels.Font.Size = 10;
tChart1.Axes.Left.Labels.Font.Bold = true;
tChart1.Axes.Bottom.Labels.Font.Bold = true;
tChart1.Aspect.Rotation = 0;
tChart1.Aspect.Elevation = 361;
//Anotation
annotation.Text = "TeeChart.Net";
annotation.Shape.Font.Size = 12;
annotation = new Steema.TeeChart.Tools.Annotation(tChart1.Chart);
annotation.Left = 250;
annotation.Top = 250;
}