Search found 6 matches

by CitoICT
Tue Jun 29, 2010 8:31 am
Forum: .NET
Topic: Method Legend.Inverted=True does not work.
Replies: 6
Views: 5417

Re: Method Legend.Inverted=True does not work.

Your suggested solution does not work for us:

Code: Select all

            
  tChart1.Legend.Inverted = true;
  tChart1.Draw();
However putting the .Draw before the .Inverted does work.

Code: Select all

            
  tChart1.Draw();
  tChart1.Legend.Inverted = true;
by CitoICT
Mon Jun 28, 2010 10:42 am
Forum: .NET
Topic: Method Legend.Inverted=True does not work.
Replies: 6
Views: 5417

Re: Method Legend.Inverted=True does not work.

This is the version for Visual Studio 2005, i guess you tried it with the Visual Studio 2010 version of Teechart.
by CitoICT
Mon Jun 28, 2010 10:40 am
Forum: .NET
Topic: Method Legend.Inverted=True does not work.
Replies: 6
Views: 5417

Re: Method Legend.Inverted=True does not work.

The problem still exists in version 4.0.2010.27961 [24-jun-2010]
by CitoICT
Mon Jun 21, 2010 10:15 am
Forum: .NET
Topic: Method Legend.Inverted=True does not work.
Replies: 6
Views: 5417

Re: Method Legend.Inverted=True does not work.

You'll need this method aswell to be able to run the sample code

Code: Select all

  Private Shared Function CorrectErrorValue(ByVal y As Double, ByVal err As Double) As Double
    If y > 0 Then
      Return err
    Else
      Return System.Math.Abs(err) * -1 + y
    End If
  End Function
by CitoICT
Mon Jun 21, 2010 10:01 am
Forum: .NET
Topic: Method Legend.Inverted=True does not work.
Replies: 6
Views: 5417

Method Legend.Inverted=True does not work.

Steps to reproduce: Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim errorSeriesH As Styles.Error Dim errorSeriesL As Styles.Error With TChart1 .Aspect.View3D = False errorSeriesH = DirectCast(.Series.Add(New Styles.Error(.Chart)), Styles.Er...
by CitoICT
Thu Jun 17, 2010 12:58 pm
Forum: .NET
Topic: Styles.Error displayed incorrect for negative Y values
Replies: 2
Views: 3126

Styles.Error displayed incorrect for negative Y values

Steps to reproduce: Imports System.Drawing Imports Steema.TeeChart Public Class Form1 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim errorSeries As Styles.Error With TChart1 errorSeries = DirectCast(.Series.Add(New Styles.Error(.Chart)), S...