CreateFromCellRange() публичный Метод

create the chart from the cell range of the data table
public CreateFromCellRange ( string CellRange ) : void
CellRange string
Результат void
Пример #1
0
		public static Chart CreateChart(Table table,ChartTypes type,string CellRange)
		{
			Chart chart        = new Chart (table,"ch1");
			chart.ChartType    = type.ToString ();
			chart.CreateFromCellRange (CellRange);
			return chart;
		}
Пример #2
0
        public static Chart CreateChart(Table table, ChartTypes type, string CellRange)
        {
            Chart chart = new Chart(table, "ch1");

            chart.ChartType = type.ToString();
            chart.CreateFromCellRange(CellRange);
            return(chart);
        }