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饼状图的主要内容,如果未能解决你的问题,请参考以下文章