3D Pie
-
- Newbie
- Posts: 58
- Joined: Thu Jul 05, 2012 12:00 am
3D Pie
Is it possible to increase the tilt of the 3D Pie?
Re: 3D Pie
Hello mikethelad,
Is possible increase the size of Title of 3D Pie, you need only change the font size as do in next line of code:
I hope will helps.
Thanks,
Is possible increase the size of Title of 3D Pie, you need only change the font size as do in next line of code:
Code: Select all
tChart1.Title.Font.Size = 15;
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 |
-
- Newbie
- Posts: 58
- Joined: Thu Jul 05, 2012 12:00 am
Re: 3D Pie
No, I meant the angle on the pie, see sample file, the top is what I am getting from Steema, the bottom one is what is required,
- Attachments
-
- graph.JPG (27.49 KiB) Viewed 7204 times
Re: 3D Pie
Hello Mikethelad,
Sorry , I got confused. In your case you, first you must change Chart3D as do in next line of code:
If previous line of code doesn't solve your problem you can change the Orthogonal angle as do in next lines of code:
If you have any problems please let me know.
I hope will helps.
Thanks,
Sorry , I got confused. In your case you, first you must change Chart3D as do in next line of code:
Code: Select all
tChart1.Aspect.Chart3DPercent = 40;
Code: Select all
tChart1.Aspect.Orthogonal = true;
tChart1.Aspect.OrthoAngle = 30;
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 |
-
- Newbie
- Posts: 58
- Joined: Thu Jul 05, 2012 12:00 am
Re: 3D Pie
Have tried both of these ways and neither change the pie
Re: 3D Pie
Hello mikethelad,
Ok. Please check next code if works in your end?
Thanks,
Ok. Please check next code if works in your end?
Code: Select all
Steema.TeeChart.Chart tChart1;
protected void Page_Load(object sender, EventArgs e)
{
tChart1 = WebChart3.Chart;
InitializeChart();
}
private Steema.TeeChart.Styles.Pie pie1;
private void InitializeChart()
{
pie1 = new Pie(tChart1);
tChart1.Aspect.Chart3DPercent = 40;
//tChart1.Aspect.Orthogonal = true; //uncomment if you want work with Orthogonal property.
//tChart1.Aspect.OrthoAngle = 30;//uncomment if you want works with a Orthogonal property and a determinate angle
pie1.FillSampleValues();
}
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 |
-
- Newbie
- Posts: 58
- Joined: Thu Jul 05, 2012 12:00 am
Re: 3D Pie
Work out why and the Chart3DPercent now works thanks
Re: 3D Pie
Hello mikethelad,
I am glad your problem have been solved. .
Thanks,
I am glad your problem have been solved. .
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 |