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

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

public static CreateChartByAxisName ( Table table, ChartTypes type, string CellRange, string AxisXName, string AxisYName ) : Chart
table AODL.Document.Content.Tables.Table
type ChartTypes
CellRange string
AxisXName string
AxisYName string
Результат Chart
		public static Chart CreateChartByAxisName(Table table,ChartTypes type,string CellRange,string AxisXName,string AxisYName)
		{
			Chart chart       = CreateChart (table,type,CellRange);
			chart.XAxisName   = AxisXName;
			chart.YAxisName   = AxisYName;
			return chart;
		}