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
-
- Posts: 14
- Joined: Thu Jan 25, 2007 4:23 am
Argument data column and Value data column
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.
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.