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

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

public static CreateChartByLegend ( Table table, string CellRange, ChartTypes type, string legendPos, string Xpos, string Ypos, string XAxisname, string YAxisname ) : Chart
table AODL.Document.Content.Tables.Table
CellRange string
type ChartTypes
legendPos string
Xpos string
Ypos string
XAxisname string
YAxisname string
Результат Chart
		public static Chart  CreateChartByLegend(Table table,string CellRange,ChartTypes type,string legendPos,string Xpos,string Ypos,string XAxisname,string YAxisname)
		{
			Chart chart                       = CreateChart(table,type,CellRange);
			chart.ChartLegend .LegendPosition = legendPos;
			chart.ChartLegend .SvgX           = Xpos;
			chart.ChartLegend .SvgY           = Ypos;
			chart.XAxisName                   = XAxisname;
			chart.YAxisName                   = YAxisname;
			return chart;
		}