Hello,
I've noticed that when displaying a Volume series, the lines are drawn starting below zero, instead of in line with the zero mark.
Is this a known behavior/issue?
I can submit sample code if needed, but this is pretty much out-of-the-box behavior.
Thanks!
-pete-
Volume series start below zero
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi pete,
This is most likely because you are setting MinimumOffset for the left axis, isn't it?
I could reproduce the issue here using this code:
Anyway, I have added the issue to the wish-list to be considered for inclusion in future releases.
This is most likely because you are setting MinimumOffset for the left axis, isn't it?
I could reproduce the issue here using this code:
Code: Select all
public Form1()
{
InitializeComponent();
InitializeChart();
}
private void InitializeChart()
{
tChart1.Aspect.View3D = false;
Steema.TeeChart.Styles.Volume volume1 = new Steema.TeeChart.Styles.Volume(tChart1.Chart);
volume1.FillSampleValues();
tChart1.Axes.Left.EndPosition = 90;
tChart1.Axes.Left.MinimumOffset = 15;
}
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 |