Hi,
I have posted this in the SQL forum however plenty of views and no replies

so I am hoping someone here may be able to shed some light.
I have been trying to tailor a query which will return XML data back ready for use with the 'fusion charts'.
I have so far been 90% successful but a certain additional piece of info needs to be added for this to completely work.
the goal is for the result to appear as follows:
<chart caption='Calls Closed Today'
xAxisName='Specialist' yAxisName='Closed'>
<Set label="JOEB" Value="1" />
<Set label="JANEB" Value="2" />
<Set label="JACKB" Value="1" />
<Set label="JILLB" Value="2" />
<Set label="JOHNB" Value="5" />
<Set label="JULIEB" Value="5" />
<Set label="JAMESB" Value="5" />
</chart>
Now, by running the following query:
SELECT SpecialistID AS label, COUNT(1) AS Value FROM dbo.Request
WHERE ResolutionActual >= (DATEADD(D, 0, DATEDIFF(D, 0, GETDATE())))
AND SpecialistID IN ('JOEB', 'JANEB', 'JACKB', 'JILLB', 'JOHNB', 'JULIEB', 'JAMESB')
GROUP BY SpecialistID
FOR XML RAW ('set'), ROOT ('chart');
This produces the following result:
<chart>
<Set label="JOEB" Value="1" />
<Set label="JANEB" Value="2" />
<Set label="JACKB" Value="1" />
<Set label="JILLB" Value="2" />
<Set label="JOHNB" Value="5" />
<Set label="JULIEB" Value="5" />
<Set label="JAMESB" Value="5" />
</chart>
The item I am missing (as you will see) is the additional code stored within the <chart> element.
How am I able to work this code in? I have briefly looked at EXPLICIT XML output which is more controllable but there is little out there which would assist me with this particular instance.
I would appreciate any help given,
Thanks!