TeeChart2014 OCX - BarChart - Marks

TeeChart for ActiveX, COM and ASP
Post Reply
Micro
Newbie
Newbie
Posts: 27
Joined: Thu Feb 20, 2014 12:00 am

TeeChart2014 OCX - BarChart - Marks

Post by Micro » Fri Jun 27, 2014 9:13 am

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.
Attachments
BarChartProblem.PNG
BarChartProblem.PNG (9.25 KiB) Viewed 12566 times

Yeray
Site Admin
Site Admin
Posts: 9534
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: TeeChart2014 OCX - BarChart - Marks

Post by Yeray » Fri Jun 27, 2014 3:12 pm

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.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Micro
Newbie
Newbie
Posts: 27
Joined: Thu Feb 20, 2014 12:00 am

Re: TeeChart2014 OCX - BarChart - Marks

Post by Micro » Mon Jun 30, 2014 7:48 am

I forgot to mention. The Y-Axis is Logarithmic.

Yeray
Site Admin
Site Admin
Posts: 9534
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: TeeChart2014 OCX - BarChart - Marks

Post by Yeray » Mon Jun 30, 2014 2:59 pm

Hi,

Try setting this:

Code: Select all

TChart1.Series(0).Marks.Clip = True
TChart1.Series(1).Marks.Clip = True
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Micro
Newbie
Newbie
Posts: 27
Joined: Thu Feb 20, 2014 12:00 am

Re: TeeChart2014 OCX - BarChart - Marks

Post by Micro » Fri Jul 04, 2014 11:03 am

With this line it does not show the Mark at all.

Yeray
Site Admin
Site Admin
Posts: 9534
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: TeeChart2014 OCX - BarChart - Marks

Post by Yeray » Fri Jul 04, 2014 11:47 am

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
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply