包含 2 个查询的 MS 饼图
我有两个查询给出两个不同的值
一个查询给出可用空间
select sum(freesize) as freespace from freespace
下一个查询给出总空间
select sum(NumRegions) as totalspace from fileidtofilename
然后使用空间=总空间-可用空间
现在我想在饼图中显示已用空间区域和可用空间区域...
任何建议是:
饼图的
<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>
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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是你如何做到的:
首先我使用 SQl 查询获得了可用空间和已用空间,
然后我这样做了...希望这对某些人有帮助1
here is how you do it:
First i got the free space and used space using SQl query's
then i did this... hope this helps some1