I reviewed this post http://www.symantec.com/connect/forums/how-do-you-create-pie-or-graph-charts-altiris-71-reports
And that is the basics. But when I select Pie chart it only shows one of my attributes.
I am using this query:
SELECT
IPAD=(SELECT COUNT (*)
FROM vAsset
WHERE [Asset Type] LIKE 'ipad' And Status like 'Active'),
Blackberry=(SELECT COUNT (*)
FROM vAsset
WHERE [Asset Type] LIKE 'blackberry' And Status like 'Active'),
[Mobile Device]=(SELECT COUNT (*)
FROM vAsset
WHERE [Asset Type] LIKE 'Mobile Device' And Status like 'Active'),
Aircard=(SELECT COUNT (*)
FROM vAsset
WHERE [Asset Type] LIKE 'Aircard' And Status like 'Active')
If I try and do a Column chart I cannot get it to show all the columns. I tweak it and preview and it looks good, but after save it goes back to 1 column or no columns. Is anyone experiencing this as well?