I have created a chart which shows two bars. one bar show new items in this month and the other shows closed items this month. the chart is created by joining 2 queries:
SELECT Null,Sum([CountOfCall_ID]) AS [SumOfCountOfCall_ID] FROM [Dashboard_New_calls_this_month] union SELECT Null,Sum([CountOfIncident_nr]) AS [SumOfCountOfIncident_nr] FROM [Dashboard_Closed_calls_this_month];
this works fine however, when the two values are equal only the new items bar is displayed.
How can i arange that in all cased the 2 bars are displayed?
thanks in advance