cxgridchart饼状图

Posted bwdblogs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cxgridchart饼状图相关的知识,希望对你有一定的参考价值。

var
 VIEW:TcxGridDBChartView;
 Level:TcxGridLevel;
 Series:TcxGridDBChartSeries;
begin

  View := cxGrid1.CreateView(TcxGridDBChartView) as TcxGridDBChartView;
  View.Name := ‘MyChart‘;
  Level:=cxGrid1.Levels.Add;
  Level.GridView := View;
  View.DataController.DataSource := TheDataSource;
  View.DiagramPie.Active := true;
  Series :=View.CreateSeries;
  View.Series[0].DataBinding.FieldName := ‘Value‘;
  View.DiagramPie.Values.CaptionPosition := pdvcpCenter;
  View.DiagramPie.Values.PercentageCaptionFormat := ‘0.0%‘;
  View.DiagramPie.Values.CaptionItems := [pdvciCategory,pdvciValue,pdvciPercentage]
end;

以上是关于cxgridchart饼状图的主要内容,如果未能解决你的问题,请参考以下文章

Matplotlib基本图形之饼状图

Echarts作图之饼状图联动

skyline应用-BS绘制饼状图

怎么设置echarts饼状图大小

devexpress 饼状图 label 重叠怎么解决啊?

如何在C#的WinForm中制作饼状图和柱状图