Show Y axis value in Label

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Candy
Newbie
Newbie
Posts: 57
Joined: Mon Apr 26, 2010 12:00 am
Contact:

Show Y axis value in Label

Post by Candy » Tue Nov 25, 2014 6:44 am

Hello,
I have a problem when using TeeChart NET for Xamarin .Android product.Would you please have a look about my attachement? Thank you very much!
Attachments
ImageDisplayZSupport.jpg
ImageDisplayZSupport.jpg (111 KiB) Viewed 5484 times

Christopher
Guru
Posts: 1603
Joined: Fri Nov 15, 2002 12:00 am

Re: Show Y axis value in Label

Post by Christopher » Tue Nov 25, 2014 11:28 am

Candy wrote: I have a problem when using TeeChart NET for Xamarin .Android product.Would you please have a look about my attachement?
I think you should be able to use the Marks.Style property:

Code: Select all

    private void InitializeChart()
    {
      tChart1.Series.Add(typeof(Bar));

      tChart1[0].Add(1, "Hello");

      tChart1[0].Marks.Style = MarksStyles.Value;

    }
Best Regards,
Christopher Ireland / 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

Post Reply