2017-01-23 6 views
2

AspxPivotGridテーブルのデータ行に通貨書式を追加したいとします。 下の画像が表示されています。だから、僕は3つのフィールド(ExtendedPriceが、ExtendedCost、利益)に通貨フォーマットを表示したいプログラムでAspxPivotGridのデータ行に通貨形式を追加する方法

Now how it is displaying

これは私のC#のコードです:

if (i == 8 || i == 9 || i == 10 || i == 11) 
{ 
    DevExpress.Web.ASPxPivotGrid.PivotGridField newF = new DevExpress.Web.ASPxPivotGrid.PivotGridField(names[i], PivotArea.DataArea); 
    newF.ID = "field" + newF.FieldName; 
    //newF.ValueFormat.FormatType= 
    ASPxPivotGrid1.Fields.Add(newF); 
} 

答えて

0

この文書(FormatInfo)によれば、私はそのように設定する必要があると思います:

newF.ValueFormat.FormatType = FormatType.Numeric; 
newF.ValueFormat.FormatString = "c2"; 
0

これはあなた

のためのトリックを行う可能性があります
newF.ValueFormat-FormatString = "c2"; 
newF.ValueFormat-FormatType = "Numeric"; 
関連する問題