iccube : in a google column chart, how to define gap between columns? - google-visualization

In iccube reporting V6, we can define columns width for google column charts, is there a way to define the gap between columns instead ?

There is no possibility to define width of gaps before IcCube 6.1 (4194), but as you already mentioned it is possible to define columns' width. With defined chart's width we can achieve needed gap between columns.
After 6.1 (4194)
Bar Gap and Bar Width options were added under Advanced Configuration > Appearance:
Bar Gap option exactly serves your needs, but I'd like to notice that if it's defined chart ignores "Bar Width" and "Bar Group Width" properties.

Related

Power BI visualizations: axis names are displayed as "sum of xyz" instead of "xyz"

I'm pretty new to Power BI.
I've been adding columns to different charts, graphs and tables and everytime, the axis names/column names have a "Sum of" infront of them even though the values being used in the graph are not discrete values.
How do I fix this to show only the column names as axis names?
PS, I'm following these videos to learn: https://www.youtube.com/watch?v=3NV5Jtbhfcw&list=PLUaB-1hjhk8HqnmK0gQhfmIdCbxwoAoys&index=8&ab_channel=AlexTheAnalyst
I tried to check if any columns have a "don't summarize" type option when I right click them but they're not present.
You can edit the label. Select your chart, go to X/Y-axis double click. Type what you want.

Power BI Combine Value Plus Unichar In a Tabular Report

I have one tabular report to track the performance according to the month... if the difference is in positive values then need to show "GREEN UP ARROW" icon and if the difference is in negative values then need to show it in "RED DOWN ARROW".
Required the above output into one single column not in to multiple column like in the below screenshot
I have tried the UP and Down Arrows in my report but I am unable to get the result in to one column.
You can use conditional formatting to achieve this. Edit Cell Elements on your visual, turn on Icons for the required series, then set the icon options as follows:
This displays as:

Bar-Line chart in SAS Enterprise Guide

I'm trying to put together a bar chart and a multiple line plot grouped by a column chart into a single bar-line chat in SAS Enterprise Guide.
If I select a bar-line chart, the only option is to assign columns to -
bar sum of and (bar chart)
line sum of task roles. (line chart)
However, I do not need any aggregations and I only have to print the graph for the data set as is.
Please let me know the best way to generate a bar line chart in SAS Enterprise Guide.
Thanks in advance!
Depending on what your dataset looks like, the sum might well be the answer. If your dataset only has one row per bar or line you're looking for, then asking for the sum will get you the sum of one item - i.e., its value.
For example, let's say you take the built-in dataset sashelp.class. You want a bar-line chart with the heights and weights of the students as the bars and lines, respectively.
You select "Column to chart" -> "Name", then drag Height over to "Bar sum of", and drag Weight over to "Line sum of". Then you get a nice bar/line graph showing heights and weights - technically sums, but sum of one number is itself.
If your dataset doesn't have a variable appropriate for Column to chart (i.e., an identifier variable that would represent a single row in the data), you may need to modify your data to conform to this; otherwise SAS doesn't have a good way to tell what is supposed to be in one bar.

Google Charts - annotationText in a Column Chart

This question is about the annotation and annotationText roles in Google Charts. annotation shows text near a data point on the chart, and annotationText provides a popup tooltip for the annotation.
In a ColumnChart, the annotation is placed inside the column if it fits. Otherwise the annotation is placed above the column in a similar way to annotations in other chart types.
When the annotation is above the column, the annotationText works (a tooltip is displayed when you hover over the annotation). However for annotations inside the column, the tooltip does not appear.
Example over here: http://codepen.io/anon/pen/Hjhsa
Does anyone know how to solve this?
This more than likely has been fixed now, but you could add the following to options.
bar: { groupWidth: "95%" }

Display value labels on multi-series google column charts

Is anyone know wether there is a way to display the values of a multi-series google column chart over each columns ?
Muhammad Tayyab Shei succeded in making it, but for a single-serie : see put labels on top of inside bar in google interactive bar chart
Since the annotation role is not supported for column charts yet, it cannot be done with a multi-column chart (the single-series version works by using a combo-chart which allows annotations for the line chart portion).
The easiest way to implement this would be to create a javascript function to either display the tooltips full time, or to draw custom tooltips and turn them on (using HTML-enabled Tooltips, for instance).