Search code examples
xamarin.iosteechart

clarification about Mobile Bar chart


i'm using TeeChartNETMonoTouchEvaluation_v2012_0_10_03 Evaluation version. it not support mobile bar chat (http://www.steema.com/uploads/gallery/BarForAndroidVert1.jpg) is it support in paid version. what are the additional features, styles supported in full version and there is any documation for the version.


Solution

  • There's no difference in functionality between evaluation and registered versions of TeeChart. You need to add a rotation tool:

      tChart1.Tools.Add(new Steema.TeeChart.Tools.Rotate());
    

    Alternatively, you can do that programmatically as well:

      Steema.TeeChart.Themes.BlackIsBackTheme myTheme = new Steema.TeeChart.Themes.BlackIsBackTheme(tChart1.Chart);
      myTheme.Apply();
    
      Steema.TeeChart.Styles.Bar bar1 = new Steema.TeeChart.Styles.Bar(tChart1.Chart);
      bar1.FillSampleValues();
      bar1.ColorEach = true;
    
      tChart1.Aspect.View3D = true;
      tChart1.Aspect.Orthogonal = false;
      tChart1.Aspect.Rotation = 320;