Page 1 of 1

Show Y axis value in Label

Posted: Tue Nov 25, 2014 6:44 am
by 15656007
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!

Re: Show Y axis value in Label

Posted: Tue Nov 25, 2014 11:28 am
by Christopher
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;

    }