Hello everyone! It is necessary to implement the ability to select the grouping by days, weeks, months, quarters in the histogram. I tried to implement this through a list of parameters, created a table with a list: by days, by weeks, by months, by quarters. Created a measure with the code:
Parameter Value Time Slices =
IF (
HASONEVALUE ( 'Parameter list Time segments'[Parameter] ),
SWITCH (
VALUES ( 'Parameter list Time segments'[Parameter] ),
"For Day", [Spec day],
"For Week", [Spec week],
"For Mounth", [Spec mounth],
BLANK ()
)I threw the "Slice" component on rendering so that you could select. But in the field of the visual component a Histogram with the "Row of Columns" grouping does not allow to place the measure "Parameter Value Time intervals". Maybe someone knows how to implement this?