We are currently using TeeChart.NET version 4.1.2012.5103, and we have the following issue.
When adding a line to our chart that contains points with values that are all the same and above 10^15, our chart shows a red cross, which I assume indicates an error.
This red cross error does not appear when adding points with different values above 10^15, or when adding points with values that are all the same and below 10^15.
In these cases, normal charts are shown, as we want them.
I have made a code example to illustrate the problem:
Code: Select all
private void InitializeChart()
{
Steema.TeeChart.Styles.Line line = new Steema.TeeChart.Styles.Line(tChart1.Chart);
// Adding 2 points with same value 10^15 or larger results in red cross
line.Add(1000000000000000.0);
line.Add(1000000000000000.0);
// Adding 2 points with value less than 10^15 results in normal chart
// line.Add(999999999999999.0);
// line.Add(999999999999999.0);
// Adding 2 points with different value of 10^15 and larger results in normal chart
// line.Add(1000000000000000.0);
// line.Add(1000000000000001.0);
}
Is it possible to check whether this issue still appears in the latest version of TeeChart.NET, or whether there is something we can do about this error?
Thank you very much!
Best regards,
Steven