【发布时间】:2015-10-29 12:01:37
【问题描述】:
我需要在服务器端创建一个图表。它必须是这种方式,因为它将是动态数量的图表。我没有找到任何可以帮助我的东西。
简而言之,我需要在服务器端实现这个例子:
http://examples2.ext.net/#/Chart/Line/Basic/
类似这样的:
public class GraficoMovimentacaoDiaria : Chart
{
public GraficoMovimentacaoDiaria(int[] dias, int ultimodia, string StoreId)
{
this.StyleSpec = "background:#fff;";
this.Shadow = true;
this.Animate = true;
this.StandardTheme = StandardChartTheme.Category1;
this.LegendConfig = new ChartLegend { Position = LegendPosition.Right };
this.Store = ?????
}
}
【问题讨论】:
标签: javascript extjs charts server-side ext.net