Pattern Editor issue

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
lchen
Newbie
Newbie
Posts: 2
Joined: Wed Jan 12, 2011 12:00 am

Pattern Editor issue

Post by lchen » Wed Jan 12, 2011 8:19 pm

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.

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: Pattern Editor issue

Post by Sandra » Thu Jan 13, 2011 11:29 am

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,
Best Regards,
Sandra Pazos / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

lchen
Newbie
Newbie
Posts: 2
Joined: Wed Jan 12, 2011 12:00 am

Re: Pattern Editor issue

Post by lchen » Thu Jan 13, 2011 5:25 pm

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.

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: Pattern Editor issue

Post by Sandra » Fri Jan 14, 2011 10:46 am

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,
Best Regards,
Sandra Pazos / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply