Server Side Chart

  1. #1

    Server Side Chart

    Hello everybody. 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 :

    https://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 = ?????
    
    
            }
        }
  2. #2
    Hi @Rtrojack,

    Please use:
    this.Store.Add(new Store());

Similar Threads

  1. [CLOSED] Need Help For Get Value Chart Server Side.
    By yuda236 in forum 2.x Legacy Premium Help
    Replies: 2
    Last Post: Jul 19, 2014, 11:57 AM
  2. [CLOSED] How to Get Svg string from Chart Object on server side
    By PriceRightHTML5team in forum 2.x Legacy Premium Help
    Replies: 1
    Last Post: Jan 23, 2014, 11:09 AM
  3. [CLOSED] How to save a chart in server side
    By JCarlosF in forum 2.x Legacy Premium Help
    Replies: 3
    Last Post: Jun 27, 2013, 1:27 AM
  4. [CLOSED] Problems to change chart data dynamically in server side
    By avante in forum 2.x Legacy Premium Help
    Replies: 2
    Last Post: Dec 28, 2012, 11:13 AM

Tags for this Thread

Posting Permissions