FpChart 中的饼图支持百分比的显示提示,不过默认是将饼图的值直接乘以 100% 进行显示,不会自动对所有数据进行百分比计算
默认显示效果如下:
为了显示各部分数据所占的百分比,我们可以通过以下代码来实现:
- protected void Page_Load(object sender, EventArgs e)
- {
- if (IsPostBack)
- {
- return;
- }
- #region 设置饼图数据显示为百分比
-
- PieSeries ps = (FpChart1.Model.PlotAreas[0] as FarPoint.Web.Chart.PiePlotArea).Series[0] as FarPoint.Web.Chart.PieSeries;
-
- double sumvalue = ps.Values.Sum();
- for (int i = 0; i < ps.Values.Count; i++)
- {
- ps.Values[i] = (ps.Values[i] / sumvalue);
- }
- #endregion
- }
复制代码
修改之后效果如下:
|
|