0

Good morning,

I am using Steema TeeChart for .NET 2012 Evaluation 4.1.2012.02284, and I am programming in MSVS 2010 C#...

I set up a ColorGrid, but when I set MyColorGrid.CenteredPoints = true, I sometimes get an exception when I zoom in, or pan, using the mouse. Is there a downloadable version in which this phenomenon does not occur, or is there something I can do to fix this problem?

Please feel free to let me know if I have left out any important details....

Thank you.

JDDK

4

1 回答 1

0

我制作了一个简单的代码并在最新版本中使用下一个代码,我没有出现异常:

 Steema.TeeChart.Styles.ColorGrid colorgrid1;
        private void InitializeChart()
        {
            tChart1.Aspect.View3D = false;
            colorgrid1 = new ColorGrid(tChart1.Chart);
            colorgrid1.FillSampleValues();
            colorgrid1.CenteredPoints = true;

        }

出于这个原因,我建议您下载 TeeChartFor.Net 的 1 月 31 日内部版本号 4.1.2012.01310 的最新评估版本,您可以在此处下载,然后再次检查问题是否在您的应用程序中仍然存在。如果您的问题仍然存在,请尝试修改我的代码,因为可以在这里重现问题并尝试为您找到一个好的解决方案。

谢谢,

于 2013-02-19T09:27:45.063 回答