Skip to content

Commit 53bd0be

Browse files
authored
FIX: add fix for textMeters
The dimension of the cube is taken from the name of the axes. The solution needs to be tested on a pie-chart, further work on the solution is expected Related issue intersystems-community/DeepSeeWeb#348
1 parent 93b9cc4 commit 53bd0be

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

MDX2JSON/ResultSet.cls

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@ Method ProcessOneAxisCell(CubeIndex, AxisKey, CubeName, QueryKey, AxisNumber, No
188188
set tCaption = $LG(tNode, 5)
189189

190190
do ##class(%DeepSee.Utils).%GetDimensionCaption(CubeName,tDimNo, tHierNo,tLevelNo, .tAxisCaption)
191-
set cell.dimension = tAxisCaption // cube dimension
192-
if (cell.dimension = "") {set cell.dimension = tCaption} // hack for assigne dimension property for calcMembers specifically
191+
set cell.dimension = tCaption // cube dimension taken from the name of the axes.
192+
if (cell.dimension = "") {set cell.dimension = tCaption} // hack for assigne dimension property in case of empty dimension
193193

194194

195195
set:$$$Debug cell.visible = '..IsCellNull(cell,AxisNumber,Node)

0 commit comments

Comments
 (0)