In my Devextreme dependent Angular application, I have four columns (A, B, C, and D) in my dxDataGrid.
C is a calculated column with formula A+B and D is another calculated column that has a dependency on C and the formula is say C*2.
I have used calculateCellValue
to calculate the value for C and it works perfectly fine.
However, when I used the same calculateCellValue
handler function to calculate the value for column D, it returns an empty cell.
Does this mean we can not define a calculated column that is based on another calculated column?