Page 1 of 1

TeeChart2014 OCX - BarChart - Marks

Posted: Fri Jun 27, 2014 9:13 am
by 16668589
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.

Re: TeeChart2014 OCX - BarChart - Marks

Posted: Fri Jun 27, 2014 3:12 pm
by yeray
Hello,

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)
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.

Re: TeeChart2014 OCX - BarChart - Marks

Posted: Mon Jun 30, 2014 7:48 am
by 16668589
I forgot to mention. The Y-Axis is Logarithmic.

Re: TeeChart2014 OCX - BarChart - Marks

Posted: Mon Jun 30, 2014 2:59 pm
by yeray
Hi,

Try setting this:

Code: Select all

TChart1.Series(0).Marks.Clip = True
TChart1.Series(1).Marks.Clip = True

Re: TeeChart2014 OCX - BarChart - Marks

Posted: Fri Jul 04, 2014 11:03 am
by 16668589
With this line it does not show the Mark at all.

Re: TeeChart2014 OCX - BarChart - Marks

Posted: Fri Jul 04, 2014 11:47 am
by yeray
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:

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