Page 1 of 1

ErrorBar Width Visible Issue

Posted: Fri Jul 16, 2010 11:32 am
by 15655720
I use TeeChartNET2009VSNET2008_4.0.2009.62332.exe.

1. There is a problem in Error Bar Series Visible.
ErrorBar_Width_Issue.JPG
ErrorBar_Width_Issue.JPG (142.92 KiB) Viewed 2378 times
Red Series is ErrorBar.

At Chart Resize Width Change, ErrorBar Series not visible.

Re: ErrorBar Width Visible Issue

Posted: Fri Jul 16, 2010 2:46 pm
by yeray
Hi BISTEL,

I'm trying to reproduce the problem with the following simple example project, but I can't:

Code: Select all

        public Form1()
        {
            InitializeComponent();

            CreateChart();
            InitializeChart();
        }

        private Steema.TeeChart.TChart tChart1;
        private void CreateChart()
        {
            tChart1 = new Steema.TeeChart.TChart();
            this.Controls.Add(tChart1);
            tChart1.Dock = DockStyle.Fill;

            Steema.TeeChart.ChartController chartController1 = new Steema.TeeChart.ChartController();
            this.Controls.Add(chartController1);
            chartController1.Chart = tChart1;
            chartController1.Dock = DockStyle.Top;
        }

        private void InitializeChart()
        {
            tChart1.Aspect.View3D = false;

            Steema.TeeChart.Styles.ErrorBar errorbar1 = new Steema.TeeChart.Styles.ErrorBar(tChart1.Chart);
            errorbar1.Add(500, 0, 320);

            Steema.TeeChart.Styles.Line line1 = new Steema.TeeChart.Styles.Line(tChart1.Chart);
            line1.Pointer.Visible = true;
            for (int i = 0; i < 100; i++)
            {
                line1.Add(i*10, i*3);
            }

            tChart1.Axes.Bottom.SetMinMax(0, 1000);
        }
Could you please check if you can reproduce it in your machine and, if not, could you please modify it so we can reproduce the problem here?

Thanks in advance.