AODL.Document.Content.Charts.ChartBuilder.CreateChart C# (CSharp) Метод

CreateChart() публичный статический Метод

public static CreateChart ( Table table, ChartTypes type, string CellRange ) : Chart
table AODL.Document.Content.Tables.Table
type ChartTypes
CellRange string
Результат Chart
		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;
		}