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!
Show Y axis value in Label
Show Y axis value in Label
- Attachments
-
- ImageDisplayZSupport.jpg (111 KiB) Viewed 6133 times
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Show Y axis value in Label
I think you should be able to use the Marks.Style property:Candy wrote: I have a problem when using TeeChart NET for Xamarin .Android product.Would you please have a look about my attachement?
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 |