关于移动条形图的说明

时间:2013-01-31 05:58:53

标签: xamarin.ios teechart

我正在使用TeeChartNETMonoTouchEvaluation_v2012_0_10_03 评估版本。它不支持移动栏聊天(http://www.steema.com/uploads/gallery/BarForAndroidVert1.jpg)它是否支持付费版本。有哪些附加功能,完整版支持的样式以及该版本的任何文档。

1 个答案:

答案 0 :(得分:1)

评估版和TeeChart注册版之间的功能没有区别。您需要添加一个旋转工具:

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

或者,您也可以通过编程方式执行此操作:

  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;