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;
		}