Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
Display Name for group on X axis of Chart
Shadowrak
<p>Data Binding Expression:</p>
<p>dimension["MonthYearGroupOVWI"]["Month_Year"]["DisplayName"]</p>
<p> </p>
<p>This works for a crosstab to display my group as an "MM/YYYY" String instead of a row number key which keeps things in the right order.</p>
<p> </p>
<p>When I convert a crosstab to a chart though</p>
<p> </p>
<p>Category (X) Series:</p>
<p>data["Month_Year"]["DisplayName"]</p>
<p> </p>
<p>the preview shows "MM/YYYY" but when I actually run the report I just see "null" under every bar.</p>
Find more posts tagged with
Comments
Shadowrak
<p>Could this be an issue with the DisplayName being a "Computed Column"?</p>
<pre class="_prettyXprint">
BirtStr.concat(row["Month"],"/",row["Year"])
</pre>