有关移动条形图的说明



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

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;

相关内容

  • 没有找到相关文章

最新更新