2015-10-29 17 views
2

我需要在服務器端創建圖表。它必須是這樣的,因爲它將是一個動態的圖表數量。我沒有找到任何可以幫助我的東西。如何在服務器端創建Ext.Net圖表

總之,我需要在服務器端實現這個例子:

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


     } 
    } 
+0

相關[Ext.NET論壇主題](http://forums.ext.net/showthread.php?60280)。 –

回答

相關問題