gpt4 book ai didi

jquery - ASP.Net 中的饼图、条形图

转载 作者:行者123 更新时间:2023-12-01 04:11:44 26 4
gpt4 key购买 nike

我想在我的asp.net应用程序中绘制饼图和条形图来详细显示年度报告。有没有可用的免费工具?

我看过森林主题的白标主题图,但这些是付费版本。 Pie Chart Sample Bar Chart Sample

最佳答案

饼图示例:

<%@ Page language="c#" debug="true" %>
<%@ import Namespace = "csASPNetGraph" %>
<%
Response.Buffer = true;
Response.Expires = 0;
Response.Clear();
GraphClass Graph = new GraphClass();
Graph.Title = "Pie Chart Example";
Graph.AddData("Item 1", 17, "ff0000");
Graph.AddData("Item 2", 28, "00ff00");
Graph.AddData("Item 3", 5, "0000ff");
Graph.GraphType = 0;
Graph.GraphToBrowser(1);
%>

条形图示例:

  <%@ Page language="c#" debug="true" %>
<%@ import Namespace = "csASPNetGraph" %>
<%
Response.Buffer = true;
Response.Expires = 0;
Response.Clear();
GraphClass Graph = new GraphClass();
Graph.Title = "Bar Chart Example";
Graph.TitleX = 120;
Graph.ShowBarTotal = true;
Graph.AddData("Item 1", 17, "ff0000");
Graph.AddData("Item 2", 28, "00ff00");
Graph.AddData("Item 3", 5, "0000ff");
Graph.GraphType = 1;
Graph.GraphToBrowser(1);
%>

引用以下链接:

http://www.chestysoft.com/aspnetgraph/manual.htm

关于jquery - ASP.Net 中的饼图、条形图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19602155/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com