In a BarChart the Marks when a value is too small it is showed under the bar not on top of it like for the other values.
You can see in the attached picture.
TeeChart2014 OCX - BarChart - Marks
TeeChart2014 OCX - BarChart - Marks
- Attachments
-
- BarChartProblem.PNG (9.25 KiB) Viewed 13751 times
Re: TeeChart2014 OCX - BarChart - Marks
Hello,
I can't reproduce this with the following code:
Could you please modify the code above so we can reproduce the problem here?
Alternatively, could you arrange arrange a simple example project we can run as-is to reproduce the problem here?
Thanks in advance.
I can't reproduce this with the following code:
Code: Select all
TChart1.Aspect.View3D = False
TChart1.Legend.Visible = False
TChart1.AddSeries scBar
TChart1.AddSeries scBar
TChart1.Series(0).AddArray 3, Array(0.5, 5, 50)
TChart1.Series(1).AddArray 3, Array(2.58, 25.83, 258.33)
Alternatively, could you arrange arrange a simple example project we can run as-is to reproduce the problem here?
Thanks in advance.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: TeeChart2014 OCX - BarChart - Marks
I forgot to mention. The Y-Axis is Logarithmic.
Re: TeeChart2014 OCX - BarChart - Marks
Hi,
Try setting this:
Try setting this:
Code: Select all
TChart1.Series(0).Marks.Clip = True
TChart1.Series(1).Marks.Clip = True
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: TeeChart2014 OCX - BarChart - Marks
With this line it does not show the Mark at all.
Re: TeeChart2014 OCX - BarChart - Marks
Hello,
Please, try to arrange a simple example project we can run as-is to reproduce the problem here because I can't with the following code and TeeChart v2014.0.0.1:
Please, try to arrange a simple example project we can run as-is to reproduce the problem here because I can't with the following code and TeeChart v2014.0.0.1:
Code: Select all
TChart1.Aspect.View3D = False
TChart1.Legend.Visible = False
TChart1.AddSeries scBar
TChart1.AddSeries scBar
TChart1.Axis.Left.Logarithmic = True
TChart1.Series(0).AddArray 3, Array(0.5, 5, 50)
TChart1.Series(1).AddArray 3, Array(2.58, 25.83, 258.33)
TChart1.Series(0).Marks.Clip = True
TChart1.Series(1).Marks.Clip = True
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |