How to add a second vAxis on the right to a Google Combo Chart and assign a series to it in icCube reporting v6? - iccube

I can add a second vAxis under Axes Configuration, but it doesn't display anywhere in the chart. How can I display a second axis on the right side and assign a series to it?

Related

HERE - Cluster view all items in clusterprovider

after adding all items into a clustered data provider i would like to set the bounds of the map to make sure all items are displayed.
in case of a marker group this is easy by using the bounding box of the marker group but i cant figure out what to use with a clustered data provider
H.clustering.ICluster contains method getBoundingBox() that could help to set the bounds of the map.
Reference can be taken from here :
https://developer.here.com/documentation/maps/3.1.17.0/api_reference/H.clustering.ICluster.html

How to add a Reference Line to a row chart in Tableau that calculates from previous time periods?

I'd like to create a row chart that shows sales by product where aggregate sales is the length of the row and product is each row. The data is filtered for only the current quarter.
However, I'd like to add a reference line that shows what the average sales by product was for the previous 4 quarters.
However, after reading Tableau's documentation, it seems like this cannot be done with a parameter, but with a different procedure as stated below
You cannot select a measure that isn't currently in the view as the
basis for your reference line. If you want to use such a measure,
close the Add Reference Line, Band, or Box dialog box and then drag
the measure from the Data pane to the Details target on the Marks
card. Change the measure's aggregation if necessary. This will not
change the view, but it will allow you to use that measure as the
basis for your reference line. Now re-open the Add Reference Line,
Band, or Box dialog box and resume at step 1, above.
However, after adding the measure from the Data pane to the Details target, the measure is being impacted by the filter and only showing the average for the current quarter. How can I have this reference line show the average of the previous four quarters?
First of all, you need to understand that if you have a date filter for the first quarter, you won't have the previous quarters available - because, well, your filter says that you only want the data for the first quarter.
What I would suggest is filtering the previous four quarters and adding the filter for the current quarter directly in the field (formula). The formula would be:
IF DATEPART('quarter',[Date]) = DATEPART('quarter',TODAY())
THEN [Sales]
END
Here follows an example image from a test data source: you would only need to change from text to bar and remove the original "Sales" field (that I left so you could see the difference). After that, you could use the original field (be it as a SUM or AVG) to get the previous quarters.
Edit: Here follows another take you could have in this view. Without using reference lines, now that you have two fields you can easily use both of them in the same view using dual axis (remember to sync them).

Graph as a detail for each row in Jasper Reports report

I would like to make a report which will print a table of results and for each row there will be the data and the graph displayed. How to display the graph for each row? The graph should use different data than are displayed in the row.
Should I use another Detail section or Subreport?
A sub-report can make sense if you want to use a separate query to retrieve your data.
If you can get all the data for both the results displayed in a table row plus the data for the graph, then simply add a chart element into the detail section.
(Note that there is only one detail section, so you can't add 'another Detail section')

MS Chart Control

I am using MS Chart control in asp.net 4.0 application.In that dates are being displayed on Xaxis and count is displayed on Y axis.
If there no data for a specific date its displaying minimum date like "30-12-1899" . Let me know how to display information on the graph without these minimum dae values.
Below is the chart link which I am using in my application http://www.microsoft.com/downloads/details.aspx?FamilyID=130f7986-bf49-4fe5-9ca8-910ae6ea442c&displaylang=en
Thanks,
Hima
My guess is you are adding points with zero as the X value. This gets translated to DateTime.MinValue which will give you the strange date. Try using double.NaN or just don't add points if there is no data.
Are you able to post the code you are using to create your chart? That will help troubleshoot your problem.

Flex CategoryAxis with non-unique values

I have a BarChart that compares different user interactions with a program we have. Obviously some users will have multiple sessions and depending on what the filtering is, a single user may have multiple entries displayed at once.
The problem comes in with the Category Axis, which uses the username as the categoryField. This is fine and displays nicely when there are no repeats of the username in the dataset. If there are repeats, though, it will put a new entry in the Y axis for each instance of the username, but all of the data is rendered on the first label in the Y axis.
Is there any way to keep the username as the category axis, but have the BarChart display the corresponding data in the correct spots?
Use a different internal name. Then use a custom labelFunction to allow duplicate label values.

Resources