Max Number of Columns in Bar Chart- Oracle ADF - bar-chart

I use JDeveloper 11.1.2.3.0
I want control Bar Chart columns Number not Want it Display all values at
selected column just want display first 10 columns .. without change any thing in viewobject Query
Can I do From bar chart properties ?? and if yes .. from where ??

Related

How to generate numbers for showing sequence in SSRS also it should get rearrenge when any field inbetween is missing

I am facing problem in SSRS report for showing sequense numbers as given in image.
when I searched for this issue I got solution as -- RowNumber("DataSetName")
but problem with this is, it generate numbers like 1,2,3..., but I want these numbers in following forms- 1.1, 1.2 or 1.1.1, 1.2.1.
And another problem for me is above function will work if I am having multiple rows in dataset and that dataset is bind with table to show its data, but In my case I am getting all data in single row and out of that I am showing values in textbox using expressions and if that value is empty I am hiding that textbox.
so I am not getting any solution to show sequence number in textbox along with text and how I can rearrenge that numbers if my inbetween textbox is hidden because of no data.
Please provide me solution for above probem.
Image for reference -
Example of data is :
From above table values from "Subheading1" And "Subheading2" will show inside "Heading first" and "Subheading3" And "Subheading4" will show inside "Heading second".
You can concatenate row numbers as strings as follows:
=RowNumber("HEADING") & "." & RowNumber("SUBHEADING")
To ensure numbers are consecutive remove the relevant rows in the source dataset instead of hiding them in the tablix.

Custom format for a number on a horizontal axis of a chart based on the axis's tick value

Is it possible to conditionally format the label of the horizontal axis in an chart based on the value.
Here is how I get to what it is am trying to format:
Right click the Horizontal Axis Labels and select "Horizontal Axis
Properties"
Select the "Number" list view item in the left side list view and
then select "Custom" in the Category list box.
I am simply trying to display K&1 when the value is equal to 1.
--> K&1 2 3 4 5 6 7 8 9 10 11 12
I Currently have the expression set to ="Grade #0", however, when I attempt to use a conditional custom format such as ="[=1][Grade K&#0];[>1][Grade #0]" the format is ignored. Any ideas on a how I can apply the formatting?
Use the following...
[=1]"Grade K"[>1]"Grade "#0

Reporting Service months in x-axis

I have a bar chart that shows values for each month in the year. Therefor my bar chart has 12 values on the x-axis. Now they show the numbers 1-12 but I would like instead of numbers to show the name of each month "Jan"-"Dec" or "January"-"December". How do I do this?
Thanks
If you use the month number try set label x-axis to this:
Or you can create a calculated field in the dataset and set it to the above expression then use that field in the x-axis label.
EDIT: I reproduced a possible scenario of your chart.
This is a chart with month number in x-axis, according to your description it is what you are getting now:
The easiest way to get the month name is using a calculated field:
Right click on dataset, go to Fields tab, click add button and type the name to the field in this case MonthName
In Field Source click on right side button Fx for set the expression
and add the following expression:
=Switch(
Fields!MonthNumber.Value=1,"January",
Fields!MonthNumber.Value=2,"February",
Fields!MonthNumber.Value=3,"March",
Fields!MonthNumber.Value=4,"April",
Fields!MonthNumber.Value=5,"May",
Fields!MonthNumber.Value=6,"June",
Fields!MonthNumber.Value=7,"July",
Fields!MonthNumber.Value=8,"August",
Fields!MonthNumber.Value=9,"September",
Fields!MonthNumber.Value=10,"October",
Fields!MonthNumber.Value=11,"November",
Fields!MonthNumber.Value=12,"December",
)
Click Ok, and update your chart to use the MonthName field (not the MonthNumber)
Right click on MonthName in Category Groups Properties.
In sorting tab you should sort by MonthNumber, in my case is [Numero Mes] as follows:
After this you should get the following chart preview.
Let me know if this was helpful.

how to do column grouping in table or list

I have a problem in SSRS reporting.
I have a data like this
BILLNO | AMT
----------+--------
123 | 1000.00
1223 | 2000.00
I need to show in table or list in following way
123:1000.00 1223:2000.00
I tried by applying column and row grouping on two unique keys but it didn't work for me
So you need to show both the values in the same cell?
Firstly, assuming that you want to display this in a vertical list, you can simply add both values to a single text box.
Add BillNo to the cell
Add a colon in plain text
Create a new placeholder in the textbox (by right clicking), and set the Value of this to =Fields!Amount.Value
The design looks like this
And the output like this
Alternatively, if you want them side by side, create a matrix with column groupings on BillNo (you can always delete the column header, but not the associated groupings to improve your layout if you wish)
--->

How can i show labels on a single bar graph depecting its value in flex for column chart?

Please check this link
http://livedocs.adobe.com/flex/3/html/help.html?content=charts_displayingdata_07.html#332805
here the thing is it is showing labelposition on all 3 column chart(column series)
(from link.. jan :2000,feb:1000,march:1500)
but instead of showing in all months i want the value to be displayed only on march
how can i do it?
need help
Create an itemrenderer(Implement IDataRenderer), and in set data method, write the condition for March month.