Hi all,
I have a cross tab with Products. By clicking on a row it filters a chart below. I want the chart title to be the name of the product selected from the cross tab above.
The only method I could come up with was
CHART_TITLE.setText(CROSSTAB.getSelectedMember("Product"));
But this doesn't work because setText can only pass a 'string' type, and the getSelectedMember function returns a 'member' type.
Any ideas how I could accomplish this? Any way to convert a member to a string?