What I have noticed after playing with 2009 version - the bars are drawn under slightly different angle now. Here are two identical graphs:
This one created using version 3:
And this one - using version 2009:
Ideally, I'd like them to be the same (besides the bug fixes!)
Bar Charts
Re: Bar Charts
Hello UserLs,
I hope will helps.
Thanks,
Bars are drawn under slightly different angle now, for consistency with other TeeChart versions. If you want to have same result in two graphics you only change value DephtPercent as next:What I have noticed after playing with 2009 version - the bars are drawn under slightly different angle now. Here are two identical graphs:
Ideally, I'd like them to be the same (besides the bug fixes!)
Code: Select all
Steema.TeeChart.Styles.Bar bar1;
private void InitializeChart()
{
bar1 = new Steema.TeeChart.Styles.Bar(tChart1.Chart);
for (int i = 0; i < 10; i++)
{
bar1.Add(i, i + 5);
}
bar1.Marks.Visible = false;
bar1.BarStyle = Steema.TeeChart.Styles.BarStyles.Cone;
bar1.UseOrigin = true;
bar1.Origin = 10;
bar1.DepthPercent = 50;
}
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 |