Argument data column and Value data column

Stimulsoft Reports.NET discussion
Post Reply
Joel Swift
Posts: 14
Joined: Thu Jan 25, 2007 4:23 am

Argument data column and Value data column

Post 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
Edward
Posts: 2913
Joined: Fri Jun 09, 2006 4:02 am

Argument data column and Value data column

Post 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.
Post Reply