diff --git a/docs/.gitignore b/docs/.gitignore index c87c9b392c020..26565a4c68ee6 100644 --- a/docs/.gitignore +++ b/docs/.gitignore @@ -18,6 +18,7 @@ # misc .DS_Store *.pem +.idea # debug npm-debug.log* diff --git a/docs/pages/product/apis-integrations/mdx-api.mdx b/docs/pages/product/apis-integrations/mdx-api.mdx index b054ea0e8b360..b5be4e720c662 100644 --- a/docs/pages/product/apis-integrations/mdx-api.mdx +++ b/docs/pages/product/apis-integrations/mdx-api.mdx @@ -55,24 +55,26 @@ subsecond latency. Consider tuning the concurrency and quotas to achieve that. ### Date hierarchies -By default, the MDX API creates additional hierarchies for all [time dimensions][ref-time-dimensions] and organizing them in a separate folder called "Calendar" for each dimension. -This creates a Calendar hierarchy structure containing `Year`, `Quarter`, `Month`, `Week`, and `Day` levels, as well as Calendar Quarter of Year and Calendar Year hierarchies. +By default, the MDX API creates additional hierarchies for all [time dimensions][ref-time-dimensions] and organizes them in a separate folder called "Calendar" for each dimension. +The following hierarchies are created: ``` - Dimension Calendar: - Year - Quarter - Month - - Week - Day +- Dimension Calendar Weeks: + - Year + - Week - Dimension Calendar Quarter of Year: - Quarter -- Dimension Calendar Year +- Dimension Calendar Year: - Year ``` -These hierarchies are particularly useful in Excel because they allow you to filter your data without needing to drill down or expand all levels. -Additionally, you can combine Calendar Year or Calendar Quarter of Year as filters while placing other dimensions on the axis. +The **Calendar Quarter of Year** and **Calendar Year** hierarchies are particularly useful in Excel because they allow you to filter your data without needing to drill down or expand all levels. +You can use them as slicers while placing other dimensions on the axes. You can set the `CUBE_MDX_CREATE_DATE_HIERARCHIES` environment variable to `false` to disable this behavior.