【问题标题】:How to create Ext.Net Charts in Server Side如何在服务器端创建 Ext.Net 图表
【发布时间】: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


【解决方案1】:

请使用:

this.Store.Add(new Store());

相关Ext.NET forum thread.

【讨论】:

    猜你喜欢
    • 2011-07-27
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2015-05-04
    相关资源
    最近更新 更多