Stack Bar chart not work correct in some situation!!
Posted: Tue Apr 21, 2009 2:39 pm
Hi,
I've found a strong problem in TeeChart for .NET v3.5.3317. I create chart using the following code:
The last bar for the first series is always disappear when the first time displaying. It will be ok if I resize the form.
It is also ok if View3D = true is set or using previous version (e.g., v3.5.3274).
Please let me know if you need sample project to reproduce it and tell me know to upload it for you.
- Erison
I've found a strong problem in TeeChart for .NET v3.5.3317. I create chart using the following code:
Code: Select all
tChart.Chart.Aspect.View3D = false;
//**
Steema.TeeChart.Styles.Bar bar = new Steema.TeeChart.Styles.Bar(tChart.Chart);
bar.Add(new double[] { 1, 0, 0, 0, 5 });
bar.MultiBar = Steema.TeeChart.Styles.MultiBars.Stacked;
bar = new Steema.TeeChart.Styles.Bar(tChart.Chart);
bar.Add(new double?[] { 10, 2, 13, 8, 5 });
bar.MultiBar = Steema.TeeChart.Styles.MultiBars.Stacked;
bar = new Steema.TeeChart.Styles.Bar(tChart.Chart);
bar.Add(new double?[] { 6, 7, 4, 8, 9 });
bar.MultiBar = Steema.TeeChart.Styles.MultiBars.Stacked;
It is also ok if View3D = true is set or using previous version (e.g., v3.5.3274).
Please let me know if you need sample project to reproduce it and tell me know to upload it for you.
- Erison