Hello,
I have TChart embedded within a control displaying a pie. When the control becomes smaller the pie disappears, this wasn't a problem in Delphi what should i do
Jonathan
Pie in TChart disappears
Re: Pie in TChart disappears
Hi jonathan,
At what size are you seeing this? Or could you please tell us if I'm missing to set any important property to reproduce the problem here?
At what size are you seeing this? Or could you please tell us if I'm missing to set any important property to reproduce the problem here?
Code: Select all
private void InitializeChart()
{
tChart1.Dock = DockStyle.Fill;
tChart1.Legend.Visible = false;
Steema.TeeChart.Styles.Pie pie1 = new Steema.TeeChart.Styles.Pie(tChart1.Chart);
pie1.Marks.Visible = false;
pie1.FillSampleValues();
tChart1.DoubleClick += new EventHandler(tChart1_DoubleClick);
}
void tChart1_DoubleClick(object sender, EventArgs e)
{
this.Width = 100;
this.Height = 100;
}
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Pie in TChart disappears
Hi,
I don't know what properties need to be set in order for pie chart to not disappear. That is what I need the help with. I checked our delphi code, there is not code handeling of the pie, so it most be something to do with the settings of properties. Please help me as this is very urgent.
Thank you jonathan
I don't know what properties need to be set in order for pie chart to not disappear. That is what I need the help with. I checked our delphi code, there is not code handeling of the pie, so it most be something to do with the settings of properties. Please help me as this is very urgent.
Thank you jonathan
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Pie in TChart disappears
Hi jonathan,
Could you please attach a simple example project we can run "as-is" to reproduce the problem here and let us know the exact TeeChart build you are using?
Thanks in advance.
Could you please attach a simple example project we can run "as-is" to reproduce the problem here and let us know the exact TeeChart build you are using?
Thanks in advance.
Best Regards,
Narcís Calvet / 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 |