gpt4 book ai didi

c# - 适用于 Asp.net Mvc 的 Google Chart HtmlHelper

转载 作者:可可西里 更新时间:2023-11-01 08:53:38 25 4
gpt4 key购买 nike

Google Chart Api 是否有任何 HtmlHelper 扩展? ? (我喜欢用于一些基本图表,例如饼图、条形图)

萌萌哒

最佳答案

Google 表示您插入的图表如下:

<img src="http://chart.apis.google.com/chart?
chs=250x100
&amp;chd=t:60,40
&amp;cht=p3
&amp;chl=Hello|World"
alt="Sample chart"
/>

所以写一个像这样的 HtmlHelper 应该很容易(未经测试):

namespace System.Web.Mvc.Html
{
public static class GoogleChartHelpers
{
public static string GoogleChart
(string cht, string chd, string chs, string chl)
{
return "<img source='http://chart.apis.google.com/chart?cht=" + cht
+ "&amp;chd=" + chd
+ "&amp;chs=" + chs
+ "&amp;chl=" + chl + "' />;
}
}
}

并这样调用它:

<%= Html.GoogleChart("P3","t:60,40","250x100","Hello|World") %>

应该将其插入您的页面:

alt text

关于c# - 适用于 Asp.net Mvc 的 Google Chart HtmlHelper,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1535576/

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