Пример #1
0
        public HighchartsSetUp(string id)
        {
            this.Id         = id;
            this.dataSource = new EmptyDataSource();

            this.obj = new Highchart();
            this.obj.Chart.RenderTo = this.Id;
        }
Пример #2
0
        public HighchartsSetUp(string id)
        {
            this.Id = id;
            this.dataSource = new EmptyDataSource();

            this.obj = new Highchart();
            this.obj.Chart.RenderTo = this.Id;
        }
Пример #3
0
 public HighchartsSetUp Series(ChartDataSource datasource)
 {
     this.dataSource = datasource;
     return(this);
 }
Пример #4
0
 public HighchartsSetUp Series(ChartDataSource datasource)
 {
     this.dataSource = datasource;
     return this;
 }