gpt4 book ai didi

asp.net - 自动生成highcharts图像的最佳方法

转载 作者:行者123 更新时间:2023-12-02 07:13:24 24 4
gpt4 key购买 nike

我的应用程序上有一些图表,我需要自动生成图像(例如:按天)以通过电子邮件发送。

环境

  • 网站的 ASP.NET MVC
  • Highcharts
  • 托管在 Azure 网站上

我正在使用 highcharts,首选是服务器导出模块,但使用 azure 网站,我无法在服务器上设置 phantomjs。

我还研究了“谷歌图表图像”,但它已被弃用。

我正在考虑使用图表(System.Web.Helpers):

例如:

public ActionResult GetChartImage()
{
var key = new Chart(width: 300, height: 300)
.AddTitle("Employee Chart")
.AddSeries(
chartType: "Bubble",
name: "Employee",
xValue: new[] { "Peter", "Andrew", "Julie", "Dave" },
yValues: new[] { "2", "7", "5", "3" });

return File(key.ToWebImage().GetBytes(), "image/jpeg");
}

但想知道是否还有其他选项可以继续使用 Highcharts。

最佳答案

使用 ms-chart 在服务器上为 Azure Web App 生成图表的唯一方法。您只能使用Azure VM在服务器上生成 Highcharts 。

关于asp.net - 自动生成highcharts图像的最佳方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32950460/

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