AODL.Document.Content.Charts.ChartBuilderHelper.ChartBuilderHelper C# (CSharp) Method

ChartBuilderHelper() public method

public ChartBuilderHelper ( IDocument document, ChartPlotArea chartPlotArea, CellRanges tableData ) : System
document IDocument
chartPlotArea ChartPlotArea
tableData CellRanges
return System
		public ChartBuilderHelper(IDocument document, ChartPlotArea chartPlotArea, CellRanges tableData)
		{
			this.m_document = document;
			this.ChartPlotArea = chartPlotArea;
			this.m_tableData = tableData;
			
			startRowIndex = m_tableData.startcell.rowIndex ;
			endRowIndex   = m_tableData.endcell .rowIndex ;
			startColumnIndex = m_tableData.startcell .columnIndex ;
			endColumnIndex   = m_tableData.endcell .columnIndex ;
			
			table   = new Table (m_document ,"local-table",null);
			DataTable = m_tableData.table ;
	
			
		}