Page 1 of 1

Pattern Editor issue

Posted: Wed Jan 12, 2011 8:19 pm
by 15658351
Hi,

I'm using the latest build of TChart in the client area along with Visual Studio 2010.

2 things:

There usually is an arrow in the upper right of a T-chart to bring up the Chart Editor, but this has seemingly disappeared for the TChart object for the .Net Framework Client Profile.

The other issue I'm seeing is that I am no longer able to bring up the TChart Pattern Editor dialog. When I click any Pattern button, it does not bring up any window. This is once again for the .Net Framework Client Profile TChart Object.

My code is targeted @ the Framework 4 Client Profile.

Re: Pattern Editor issue

Posted: Thu Jan 13, 2011 11:29 am
by 10050769
Hello Ichen,
There usually is an arrow in the upper right of a T-chart to bring up the Chart Editor, but this has seemingly disappeared for the TChart object for the .Net Framework Client Profile.
If you use Client Profile, and you want access to Editor of chart in design time you only have next:
1.- Select Chart.
2.- Click Right button.
3. Select properties and immediately it show editor.
The other issue I'm seeing is that I am no longer able to bring up the TChart Pattern Editor dialog. When I click any Pattern button, it does not bring up any window. This is once again for the .Net Framework Client Profile TChart Object.
I could reproduce it and I have added it in the bug list report with number [TF02015355]. We try to fix it for next maintenance releases of TeeChart.net

I hope will help.

Thanks,

Re: Pattern Editor issue

Posted: Thu Jan 13, 2011 5:25 pm
by 15658351
So is there a workaround at this point? I would appreciate being able to get to the pattern editor without starting my project over from scratch.

Re: Pattern Editor issue

Posted: Fri Jan 14, 2011 10:46 am
by 10050769
Hello Ichen,
So is there a workaround at this point?
I am afraid that for now it is not possible. The only solution I can give is that change properties, of Color, Hatch, Gradient to run time (code) as do in next example:

Code: Select all

 public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            Steema.TeeChart.Styles.Area area = new Steema.TeeChart.Styles.Area(tChart1.Chart);
            Random rnd = new Random();
            for (int i = 0; i < 5; i++)
            {
                area.Add(i, rnd.Next(100));
            }
            //Series Area
            area.AreaBrush.Solid= false;
            area.Gradient.Visible = true;
           //Chart Panel.
            tChart1.Panel.Gradient.Visible = false;
            tChart1.Walls.Back.Visible = false;
            tChart1.Panel.Color = Color.Red;
            tChart1.Panel.Brush.Style = System.Drawing.Drawing2D.HatchStyle.DarkVertical;
        }
I would appreciate being able to get to the pattern editor without starting my project over from scratch.
I recommend you to be aware at this forum, our RSS news feed, twitter and facebook accounts for new release announcements and what's implemented on them.

I hope will helps.

Thanks,