Page 1 of 1

help for chart

Posted: Sat May 02, 2009 11:10 pm
by mgorgin
Hello,
I want design a chart report that show count of records that have a custem condition as value .
but the chart wizard allow select field from data source only and don't allow count its or doing any function on fields.
please help me.

help for chart

Posted: Sun May 03, 2009 1:02 am
by Jan
Hello,

You can prepare data for chart with help of "Data based on other Data Source".

Thank you.

help for chart

Posted: Sun May 03, 2009 5:42 am
by mgorgin
Very thank , resolve my problem .
I request another help. to round digit of number columns in chart , for example we have a values(1000,2000,3000) in chart that want instead those , show (1,2,3).

Thank you

help for chart

Posted: Sun May 03, 2009 7:09 am
by Jan
Hello,

In this case you need set DataSource property of chart. After specify required expression in Value property of series. For example:

Code: Select all

{DataSource.Column / 1000}
Thank you.

help for chart

Posted: Sun May 03, 2009 11:37 pm
by mgorgin
Hello,

I try your guidance but receive the (object reference not set to an instance of an object) error.

Thank you.

help for chart

Posted: Tue May 05, 2009 9:59 am
by Ivan
Hello,

Please set DataSource property of chart. After specify required expression in Value property of series.

Code: Select all

{DataSource.Column / 1000}
For example, please check "SimpleChart" report in attach.

Thank you.