help for chart
help for chart
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.
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
Hello,
You can prepare data for chart with help of "Data based on other Data Source".
Thank you.
You can prepare data for chart with help of "Data based on other Data Source".
Thank you.
help for chart
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
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
Hello,
In this case you need set DataSource property of chart. After specify required expression in Value property of series. For example:
Thank you.
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}
help for chart
Hello,
I try your guidance but receive the (object reference not set to an instance of an object) error.
Thank you.
I try your guidance but receive the (object reference not set to an instance of an object) error.
Thank you.
help for chart
Hello,
Please set DataSource property of chart. After specify required expression in Value property of series.
For example, please check "SimpleChart" report in attach.
Thank you.
Please set DataSource property of chart. After specify required expression in Value property of series.
Code: Select all
{DataSource.Column / 1000}
Thank you.
- Attachments
-
- 174.SimpleChart.zip
- (2.33 KiB) Downloaded 169 times