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.
Pattern Editor issue
Re: Pattern Editor issue
Hello Ichen,
1.- Select Chart.
2.- Click Right button.
3. Select properties and immediately it show editor.
I hope will help.
Thanks,
If you use Client Profile, and you want access to Editor of chart in design time you only have next: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.
1.- Select Chart.
2.- Click Right button.
3. Select properties and immediately it show editor.
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.netThe 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 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 |
Instructions - How to post in this forum |
Re: Pattern Editor issue
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
Hello Ichen,
I hope will helps.
Thanks,
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:So is there a workaround at this point?
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 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 would appreciate being able to get to the pattern editor without starting my project over from scratch.
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 |
Instructions - How to post in this forum |