I have a table visualization with several measures, a row dimension and a column dimension. I want to hide a particular measure for only certain values of the column dimension.
I can’t use something like:
tblExample.control.columns[1].isVisible = false;
because that hides the measure for all column dimension options.
I have also tried many combinations of scripts similiar to
tblExample.metricSetBindings[0].dataResult.cellset.columns[1].visible = false;
but nothing seems to work. Is it possible to do something like this? I don’t need to key off the column dimension value, per se, I am fine just saying hide columns 2, 4 and 8, for example, like you could do in a .Net datagrid, for example.
Thanks.