Skip to content

[ATSCALE-26920]: add is_hidden property to calc groups and calculated members #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions sml-reference/dimension.md
Original file line number Diff line number Diff line change
Expand Up @@ -309,11 +309,13 @@ namespace Dimensions{
String description
String folder
Array~CalculatedMembers~ calculated_members
Boolean is_hidden
}
class CalculatedMembers{
String unique_name
String description
String format
Boolean is_hidden
String expression
Boolean use_input_metric_format
String template
Expand Down Expand Up @@ -541,6 +543,18 @@ Defines the individual calculated members in the group.

A description of the calculation group.

## is_hidden

- **Type:** boolean
- **Required:** N

Determines whether the calculation group is visible in BI tools.

Supported values:

- `false` (default)
- `true`

## folder

- **Type:** string
Expand Down Expand Up @@ -577,6 +591,18 @@ Supported templates:

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

## is_hidden

- **Type:** boolean
- **Required:** N

Determines whether the attribute is visible in BI tools.

Supported values:

- `false` (default)
- `true`

## expression

- **Type:** string
Expand Down