i have two queries which give two different values
One query gives the freespace
select sum(freesize) as freespace from freespace
the next query gives totalspace
select sum(NumRegions) as totalspace from fileidtofilename
then usedspace= totalspace- freespace
Now i want to display the usedspace region and freespace region in the piechart...
any suggestions
the piechart is:
<asp:Chart ID="Chart4" runat="server" >
<Series>
<asp:Series ChartType="Pie" Name="Series1">
</asp:Series>
</Series>
<ChartAreas>
<asp:ChartArea Name="ChartArea1">
</asp:ChartArea>
</ChartAreas>
</asp:Chart>