Skip to content

Commit de35687

Browse files
feat: add is_hidden property to calc groups and calculated members
1 parent 24c4267 commit de35687

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

sml-reference/dimension.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,11 +281,13 @@ namespace Dimensions{
281281
String description
282282
String folder
283283
Array~CalculatedMembers~ calculated_members
284+
Boolean is_hidden
284285
}
285286
class CalculatedMembers{
286287
String unique_name
287288
String description
288289
String format
290+
Boolean is_hidden
289291
String expression
290292
Boolean use_input_metric_format
291293
}
@@ -513,6 +515,18 @@ Defines the individual calculated members in the group.
513515

514516
A description of the calculation group.
515517

518+
## is_hidden
519+
520+
- **Type:** boolean
521+
- **Required:** N
522+
523+
Determines whether the attribute is visible in BI tools.
524+
525+
Supported values:
526+
527+
- `false` (default)
528+
- `true`
529+
516530
# Calculated Members Properties
517531

518532
## unique_name
@@ -542,6 +556,18 @@ Supported templates:
542556

543557
If you do not want to use a built-in template, you can define a custom expression using the `expression` property (see below).
544558

559+
## is_hidden
560+
561+
- **Type:** boolean
562+
- **Required:** N
563+
564+
Determines whether the attribute is visible in BI tools.
565+
566+
Supported values:
567+
568+
- `false` (default)
569+
- `true`
570+
545571
## expression
546572

547573
- **Type:** string

0 commit comments

Comments
 (0)