简体   繁体   中英

How to create Ext.Net Charts in Server Side

I need to create a chart in server side. It has to be this way because it will be a dynamic number of charts. I did not find anything that could help me.

In short, I need to implement this example in server side :

http://examples2.ext.net/#/Chart/Line/Basic/

Something like this:

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 = ?????


        }
    }

Please use:

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

Related Ext.NET forum thread .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM