Page 1 of 1
Argument data column and Value data column
Posted: Tue Feb 13, 2007 7:33 am
by Joel Swift
Hi,
Can you please explain the purpose of Argument data column and Value data column and how to use it.
Thanks in advance,
Joel
Argument data column and Value data column
Posted: Tue Feb 13, 2007 8:37 am
by Edward
An ArgumentDataColumn property and a ValueDataColumn property set columns of the DataSource from the Dictionary of a report. These properties are set in the following form:
Chart1.ValueDataColumn = "Orders.OrderDate";
Chart1.ArgumentDataColumn = "Orders.Freight";
An ArgumentDataColumn renders its values on the horizontal X Axis.
A ValueDataColumn renders its values on the vertical Y Axis.
Please also see the Demo.exe example Application. Report ChartOnDataband in the Charts group.
Thank you.