Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Condition field Graph object RDC 1

Status
Not open for further replies.

oguraja

Programmer
Jun 14, 2003
124
US
i used CR 8.5 and delphi 6

I use ADO recordset to provide data to the report(ttx file used). Graph object is created during runtime using RDC.The condition fields are set during runtime.

Now i have a problem that the condition field values are sorted at runtime(ascending order). But i dont want the values of condition fields to be sorted..does anybody know how to do that??
 
is it possible to set order to the COndition field?????
 
I haven't used it, but I see there's a ConditionFieldSortOrder property of the Graph Object:
Property ConditionFieldSortOrder(index As Long) As CRSortDirection
Member of CRAXDRT.GraphObject
Gets or sets condition field sort order for detail chart

... and the definition of the CRSortDirection enum:

crAscendingOrder = 0
crDescendingOrder = 1
crOriginalOrder = 2
crSpecifiedOrder = 3

Perhaps that helps, perhaps not...

-dave
 
Thanks a lot for the info... it works
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top