Ejemplo n.º 1
0
 private void pivotGridControl1_FieldValueDisplayText(object sender, DevExpress.XtraPivotGrid.PivotFieldDisplayTextEventArgs e)
 {
     if (e.ValueType == DevExpress.XtraPivotGrid.PivotGridValueType.GrandTotal)
     {
         e.DisplayText = "المجموع";
     }
 }
Ejemplo n.º 2
0
 private void pivotGridControl1_FieldValueDisplayText(object sender, DevExpress.XtraPivotGrid.PivotFieldDisplayTextEventArgs e)
 {
     if (e.ValueType == DevExpress.XtraPivotGrid.PivotGridValueType.GrandTotal)
     {
         if (e.IsColumn)
         {
             e.DisplayText = "Genel Sütun Toplamı";
         }
         else
         {
             e.DisplayText = "Genel Satır Toplamı";
         }
     }
     if (e.ValueType == DevExpress.XtraPivotGrid.PivotGridValueType.Total)
     {
         if (e.IsColumn)
         {
             e.DisplayText = "Sütun Toplamı";
         }
         else
         {
             e.DisplayText = "Satır Toplamı";
         }
     }
 }
Ejemplo n.º 3
0
 private void pivotGridControl1_FieldValueDisplayText(object sender, DevExpress.XtraPivotGrid.PivotFieldDisplayTextEventArgs e)
 {   /* DENEME
      * if (e.Field == fieldGIRFRTID && e.Value != null)
      * {
      *  var ftRow = Program.MF.mainDataSet.FT.Rows.Find(e.Value);
      *  e.DisplayText = ftRow["AD"].ToString();
      * }*/
 }