0

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

4

1 回答 1

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;
于 2013-01-31T15:25:29.940 回答