Page 1 of 1

TeeChart for .NET maintenance release

Posted: Wed Feb 11, 2004 10:30 am
by 8123414
Hi,

I just received an email informing me of a new TeeChart for .NET maintenance release. It states that it supports installation in Visual Studio.NET 2003 Framework v1.1.4322. Do you intend releasing a version for VS.NET.2002 Framework v1.0.3705?

Also for future reference how do you apply these updates? Is it necessary to uninstall the previous version, install the new version then recompile any projects that use TeeChart?

Paul

Posted: Wed Feb 11, 2004 12:17 pm
by 8121246
Dear Supporter/Marc

Just installed the new maintenance release 1.1.1499.42325. I had hoped the problem with small increments (see one of my previouse emails) would have been resolved with this new version. However, I still can't get the chart to show labels at small increments (see test code below) :twisted:

Public Sub AddLine(chrt As TChart)
Dim cnt, Series As Integer,
Dim seri As New Steema.TeeChart.Styles.Line

chrt.Visible = True
chrt.Header.Text = ""
chrt.Text = "testing"
seri.Add(4, 5)
seri.Add(4.5, 5.000000000002)
chrt.Series.Add(seri)
chrt.Refresh()
End Sub

It also won't show proper axis labels for small numbers either (1E-15 or so). This is probably all driven by the private 'MinIncrement' parameter (can't find any reference to it in the release notes either)
Any suggestions?

Francis